示例#1
0
        public async Task <IActionResult> PutHelloWorldItem(long id, HelloWorldItem HelloWorldItem)
        {
            if (id != HelloWorldItem.Id)
            {
                return(BadRequest());
            }

            _context.Entry(HelloWorldItem).State = EntityState.Modified;

            try
            {
                await _context.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!HelloWorldItemExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(NoContent());
        }
示例#2
0
        public async Task <IHttpActionResult> PutUser(int id, User user)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }

            if (id != user.Id)
            {
                return(BadRequest());
            }

            db.Entry(user).State = EntityState.Modified;

            try
            {
                await db.SaveChangesAsync();
            }
            catch (DbUpdateConcurrencyException)
            {
                if (!UserExists(id))
                {
                    return(NotFound());
                }
                else
                {
                    throw;
                }
            }

            return(StatusCode(HttpStatusCode.NoContent));
        }
示例#3
0
 public ActionResult Edit([Bind(Include = "id,age,name")] HelloWorld helloWorld)
 {
     if (ModelState.IsValid)
     {
         db.Entry(helloWorld).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(helloWorld));
 }
示例#4
0
 public ActionResult Edit([Bind(Include = "AlbumsID,Title,ArtistID,ReviewID")] Albums albums)
 {
     if (ModelState.IsValid)
     {
         db.Entry(albums).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.ArtistID = new SelectList(db.Artists, "ArtistID", "Name", albums.ArtistID);
     return(View(albums));
 }