Entity Framework中怎么使用配置伙伴创建数据库
这篇“EntityFramework中怎么使用配置伙伴创建数据库”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“EntityFramework中怎么使用配置伙伴创建数据库”文章吧。
EF提供了另一种方式来解决这个问题,那就是为每个实体类单独创建一个配置类。然后在OnModelCreating方法中调用这些配置伙伴类。
创建Product实体类:
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Data.Entity.ModelConfiguration;namespaceEF配置伙伴.Model{publicclassProduct{publicintProductNo{get;set;}publicstringProductName{get;set;}publicdoubleProductPrice{get;set;}}}
创建Product实体类的配置类:ProductMap,配置类需要继承自EntityTypeConfiguration泛型类,EntityTypeConfiguration位于System.Data.Entity.ModelConfiguration命名空间下,ProductMap类如下:
usingEF配置伙伴.Model;usingSystem;usingSystem.Collections.Generic;usingSystem.Data.Entity.ModelConfiguration;usingSystem.Linq;usingSystem.Text;namespaceEF配置伙伴.EDM{publicclassProductMap:EntityTypeConfiguration<Product>{publicProductMap(){//设置生成的表名称ToTable("ProductConfiguration");//设置生成表的主键this.HasKey(p=>p.ProductNo);//修改生成的列名this.Property(p=>p.ProductNo).HasColumnName("Id");this.Property(p=>p.ProductName).IsRequired()//设置ProductName列是必须的.HasColumnName("Name");//将ProductName映射到数据表的Name列}}}
在数据上下文Context类的OnModelCreating()方法中调用:
usingEF配置伙伴.EDM;usingEF配置伙伴.Model;usingSystem;usingSystem.Collections.Generic;usingSystem.Data.Entity;usingSystem.Linq;usingSystem.Text;namespaceEF配置伙伴.EFContext{publicclassContext:DbContext{publicContext():base("DbConnection"){}publicDbSet<Product>Products{get;set;}protectedoverridevoidOnModelCreating(DbModelBuildermodelBuilder){//添加Product类的配置类modelBuilder.Configurations.Add(newProductMap());base.OnModelCreating(modelBuilder);}}}
查看数据库,可以看到符合我们的更改:
这种写法和使用modelBuilder是几乎一样的,只不过这种方法更好组织处理多个实体。你可以看到上面的语法和写jQuery的链式编程一样,这种方式的链式写法就叫Fluent API。
以上就是关于“EntityFramework中怎么使用配置伙伴创建数据库”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注恰卡编程网行业资讯频道。