asp.net core系列 28 EF模型配置(字段,构造函数,拥有实体类型)
一. 支持字段
ef允许读取或写入字段而不是一个属性。在使用实体类时,用面向对象的封装来限制或增强应用程序代码对数据访问的语义时,这可能很有用。无法使用数据注释配置。除了约定,还可以使用fluent api为属性配置支持字段。
1.1 约定
public class blog { // _<camel-cased property name> private string _url; public int blogid { get; set; } public string url { get { return _url; } set { _url = value; } } }
1.2 fluent api
modelbuilder.entity<blog>() .property(b => b.url) .hasfield("_validatedurl"); public class blog { private string _validatedurl; public string url { get { return _validatedurl; } } public void seturl(string url) { //... _validatedurl = url; } }
二. 构造函数
从开始 ef core 2.1,可以定义带参数的构造函数,并在创建实体实例时让ef core调用此构造函数。构造函数参数可以绑定到映射属性,或绑定到各种服务,以方便延迟加载等行为。
2.1 带参的构造函数
下面代码演示带参数的构造函数,并且设置只读属性,外部调用该类时,只能通过构造函数传入实体值。
public class blog { public blog(int id, string name, string author) { id = id; name = name; author = author; } public int id { get; private set; } public string name { get; private set; } public string author { get; private set; } public icollection<post> posts { get; } = new list<post>(); }
别外使用私有setter的另一种方法是使属性真正只读,并在onmodelcreating中添加更明确的映射。
public class blog { private int _id; public blog(string name, string author) { name = name; author = author; } public string name { get; } public string author { get; } public icollection<post> posts { get; } = new list<post>(); } protected override void onmodelcreating(modelbuilder modelbuilder) { modelbuilder.entity<blog>( b => { b.haskey("_id"); b.property(e => e.author); b.property(e => e.name); }); }
2.2 注入服务
ef core还可以将“服务”注入实体类型的构造函数中。例如,可以注入以下内容:
dbcontext - 当前上下文实例,也可以作为派生的dbcontext类型键入
ilazyloader- 延迟加载服务
action<object, string>- 一个延迟加载的委托
ientitytype - 与此实体类型关联的ef core元数据
例如,注入的dbcontext可用于选择性地访问数据库以获得关于相关实体的信息而无需全部加载它们。在下面的示例中,这用于获取blog博客中的posts帖子数量:
public class blog { public blog() { } private blog(bloggingcontext context) { context = context; } private bloggingcontext context { get; set; } public int id { get; set; } public string name { get; set; } public string author { get; set; } public icollection<post> posts { get; set; } //获取帖子数量 public int postscount => posts?.count ?? context?.set<post>().count(p => id == ef.property<int?>(p, "blogid")) ?? 0; }
有一些需要注意:
(1)构造函数是私有的,因为它只由ef core调用,并且还有另一个通用的公共构造函数。
(2)使用注入服务的代码(即ef上下文)防御它为null,处理ef core未创建实例的情况。
(3)因为服务存储在读或写属性中,所以当实体附加到新的上下文实例时,它将被重置。
2.2示例演示,没有成功,blog带参的构造函数为私有,无法调用, context上下文总为null,以后在了解。
三.拥有的实体类型
该功能是在 ef core 2.0 中的新增功能。是指:当一个实体类中包含导航属性(实体类型引用属性),并对导航属性进行建模,这个导航属性类被称为“拥有实体类型”。而包含“拥有实体类型”的类叫:所有者。
3.1 显示配置
ef core中的所有实体类型永远不会按照约定包含在模型中。可以使用ownsone
在(使用ef core 2.1中的新增功能)onmodelcreating
中使用或用注释类型ownedattribute
将类型配置为拥有类型。
下面示例中streetaddress
是一个没有标识属性的类型。 它用作 order 类型的属性来指定特定订单的发货地址。
//拥有实体类型 [owned] public class streetaddress { public string street { get; set; } public string city { get; set; } } //所有者 public class order { public int id { get; set; } public streetaddress shippingaddress { get; set; } } public class bloggingcontext : dbcontext { public bloggingcontext(dbcontextoptions<bloggingcontext> options) : base(options) { } public dbset<order> order { get; set; }
}
使用ef基于数据模型(order)创建数据库,如下图所示。
还可以使用该ownsone
方法在onmodelcreating
中
指定shippingaddress
属性,是order
实体类型的拥有实体,并根据需要配置其他方面。
modelbuilder.entity<order>().ownsone(p => p.shippingaddress);
如果shippingaddress
属性在order
实体中为私有属性,则可以使用的字符串版本ownsone
方法:
modelbuilder.entity<order>().ownsone(typeof(streetaddress), "shippingaddress");
3.2 隐含键
ownsone通过引用导航配置或发现的拥有类型始终与所有者具有一对一的关系,因此拥有实体不需要自己的键值,因为外键值是唯一的。在前面的示例中,streetaddress
类型不需要定义键属性。拥有实体类型的实例键值与所有者实例的键值相同。
3.3 拥有的集合类型
要配置拥有的集合类型,使用ownsmany
在onmodelcreating
中使用。
但是,主键不会按约定配置,因此需要明确指定。下面代码演示拥有的集合类型的关键代码。
public class distributor { public int id { get; set; } public icollection<streetaddress> shippingcenters { get; set; } } modelbuilder.entity<distributor>().ownsmany(p => p.shippingcenters, a => { // 给shippingcenters表设置一个主键 a.property<int>("id"); //给shippingcenters表设置一个外键 a.hasforeignkey("distributorid"); //设置复合主键 a.haskey("distributorid", "id"); });
使用ef基于数据模型(distributor)创建数据库,如下图所示(一对多的关系)。distributor_shippingcenters表的id为主键,distributorid为外键。
关于拥有的实体类型的更多介绍参考官方文档,这里不是介绍。关于“ef模型配置系列”的很多功能,都是基于code first模式。
参考文献:
官方文档:ef支持字段