如何在内容存储库中添加评论?
我可以在c.Comment Text之后添加这一行吗?
CommentRepository.Instance.AddComment(评语);
[HttpPost]
public ActionResult AddComment(string comment)
{
Comment c = new Comment();
c.CommentText = comment;
return Json(c, JsonRequestBehavior.AllowGet);
}