我的课是这样的:
public class ParentModel
{
public int ID { get; set; }
public string ParentName { get; set; }
public List<ChildModel> ChildModel { get; set; }
}
public class ChildModel
{
public int ParentID { get; set; }
public string ChildName { get; set; }
}
字符串
我就这样用它。
List<ParentModel> parentModel = new List<ParentModel>();
using(MyEntities db = new MyEntities())
{
foreach(Parent parent in db.Parents.Where(some_condition_here))
{
parentModel.Add (
new ParentModel {
ID = parent.ID,
ParentName = parent.ParentName
}
);
}
}
型
问题是我不知道如何将子记录添加到每个父记录中。似乎无法为它构造语法。我如何将子记录包含到每个父记录中?
1条答案
按热度按时间sbdsn5lh1#
假设你有FK关系到子实体,我在这里只称之为
ChildEntities
,所以只要做字符串
然后
型