码迷,mamicode.com
首页 > Windows程序 > 详细

在efcore 中创建类 通过实现IEntityTypeConfiguration<T>接口 实现实体类的伙伴类 实现FluentApi

时间:2018-08-10 13:10:21      阅读:831      评论:0      收藏:0      [点我收藏+]

标签:nconf   ati   class   lse   new   mode   host   配置   oca   

1 创建实体类:

 public partial class NewsCategory : IAggregationRoot
    {
        public NewsCategory() { }
        public Guid Id { get; set; }
        public string CategoryName { get; set; }
        public bool IsDel { get; set; }
        public string Code { get; set; }
    }

2.创建实体类的映射伙伴类

public class NewsCategoryMap : IEntityTypeConfiguration<NewsCategory>
    {
        public void Configure(EntityTypeBuilder<NewsCategory> builder)
        {
            builder.ToTable("NewsCategory");
        }
    }

3.在上下文中 重写 OnModelCreating方法 将伙伴类的应用上

 public class NewsEFCoreContext:DbContext,INewsContext
    {
       
        public DbSet<NewsCategory> Categories { get; set; }

        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            //先直接写连接字符串,生成数据库。后续再在配置文件中配置,并使用到此处
            optionsBuilder.UseSqlServer("Server=localhost;Database=wehope;User ID=sa;Password=0");
            //optionsBuilder.UseSqlServer(AppSetting.GetAppSetting("DealerContext"));
        }

        protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            modelBuilder.ApplyConfiguration<NewsCategory>(new NewsCategoryMap());
            base.OnModelCreating(modelBuilder); 
        }
    }

完成。

技术分享图片

 

在efcore 中创建类 通过实现IEntityTypeConfiguration<T>接口 实现实体类的伙伴类 实现FluentApi

标签:nconf   ati   class   lse   new   mode   host   配置   oca   

原文地址:https://www.cnblogs.com/wholeworld/p/9454297.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!