【发布时间】:2012-11-08 14:25:36
【问题描述】:
有两个实体 Post 和 Photo 。两者都有comment实体的集合。
有没有办法避免下面写的mapping(必须为Comment实体中的每个父级定义一个属性)?
public class Post
{
public string Title {get; set;}
public ICollection<Comment> Comments{get; set; }
}
public class Photo
{
public string Path{get;set;}
public ICollection<Comment> Comments{get; set; }
}
public class Comment
{
public int? PostId{get;set;}
public Virtual Post Post{get;set;}
public int? PhotoId{get;set;}
public Virtual Photo Photo{get;set;}
}
【问题讨论】:
标签: c# entity-framework parent-child