使用entity-framework将对象列表添加到另一个类

时间:2014-10-29 12:53:32

标签: entity-framework

我正在创建一个博客,我尝试将评论列表“连接”到每个博客帖子:

public class BlogPost
    {
        public int BlogPostId { get; set; }
        public string Post { get; set; }
    }

评论级:

public class Comment
    {
        public int CommentId { get; set; }
        public string Comment { get; set; }
    }

如何在BlogPost类中指定我希望它能够为其提供评论列表?

1 个答案:

答案 0 :(得分:1)

您需要配置一对多关系,例如:

public class BlogPost
{
    ...
    public virtual ICollection<Comment> Comments { get; set; }
}

public class Comment
{
    ...
    public virtual Comment Comment { get; set; }
}

您可以获得更多信息: http://www.entityframeworktutorial.net/code-first/configure-one-to-many-relationship-in-code-first.aspx