0

我正在用 MVC 4 写一个博客网站。我的 CommentController 中有以下操作方法来为文章添加评论。评论具有导航属性 - 作者(由电子邮件地址标识)。我想要做的是如果作者的电子邮件地址已经存在于数据库中,我只插入新评论。如果是新的电子邮件地址,则还需要创建新作者。

--------下面是我的创建动作--------

     public ActionResult Create(Comment comment)
            {
                if (ModelState.IsValid)
                {
                    comment.CreatedDate = DateTime.Now;
                    myDb.Comments.Add(comment);

                    myDb.SaveChanges();
                    return RedirectToAction("Details", "Blog", new {id = comment.BlogId });
                }
                return View(comment);
            }

--------下面是我的评论课--------

public class Comment
    {
        [Key]
        public int CommentId { get; set; }

        [Required(ErrorMessage="Please enter your comment")]
        public string CommentContent { get; set; }
        public DateTime CreatedDate { get; set; }

        [Required]
        public int AuthorId { get; set; }
        public virtual Author Author { get; set; }

        [Required]
        public int BlogId { get; set; }
        public virtual Blog Blog { get; set; }

    }

谢谢你们

4

1 回答 1

1
var authors = myDb.Authors;
if((comment.AuthorId != null || comment.AuthorId !=0) && !authors.Exists(a=>a.AuthorID == comment.AuthorId))
{
   //do your creation of new Author and then post the article
}
else//author exists
{
   //just post article
}

这假设您的 myDb 有一个名为 Authors 的表(我认为确实如此),并且您可能需要调整布尔 Exists lambda 以正确匹配 AuthorId

于 2013-01-13T11:52:35.173 回答