如何使List<T>
类型与EF一起使用?
public class EntityA {
public string Id {get;set;}
}
public class EntityB {
public string Id {get;set;}
public List<EntityA> Items {get;set;} // <---
}
答案 0 :(得分:0)
您可能只需要遵循实体框架设置的约定。我没看到您使用的EF的确切版本,但此URL中的说明适用于您: