public IHttpActionResult PutComment(int id, Comment comment) { if (!ModelState.IsValid) { return BadRequest(ModelState); } if (id != comment.Id) { return BadRequest(); } db.Entry(comment).State = EntityState.Modified; try { db.SaveChanges(); } catch (DbUpdateConcurrencyException) { if (!CommentExists(id)) { return NotFound(); } else { throw; } } return StatusCode(HttpStatusCode.NoContent); }
public IHttpActionResult PostComment(Comment comment) { if (!ModelState.IsValid) { return BadRequest(ModelState); } comment.time = DateTime.Now; db.Comments.Add(comment); db.SaveChanges(); // return CreatedAtRoute("DefaultApi", new { id = comment.Id }, comment); return Ok(comment); }