我正在创建一个博客,我尝试将评论列表“连接”到每个博客帖子:
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类中指定我希望它能够为其提供评论列表?
答案 0 :(得分:1)
您需要配置一对多关系,例如:
public class BlogPost
{
...
public virtual ICollection<Comment> Comments { get; set; }
}
和
public class Comment
{
...
public virtual Comment Comment { get; set; }
}