我有两个用于数据模型和数据库上下文的库。
基本与对象
public class Person { [Key] public int ID { get; set; } public string Name { get; set; } public string SName { get; set; } public bool IsSystemUser { get; set; } }
扩展
public class Vehicle { [Key] public int Id { get; set; } public string Name { get; set; } public string Plate { get; set; } public virtual ICollection<Person> Users { get; set; } }
如何添加公共虚拟 ICollection Vehicles { get; 放; } 到第一类库中的对象。EF 正在正确生成数据库。