EF OnModelCreating

Posted 封存的记忆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF OnModelCreating相关的知识,希望对你有一定的参考价值。

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            modelBuilder.Conventions.Remove<IncludeMetadataConvention>();     //不创建EdmMetadata表
            modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();//移除复数表名的契约
            modelBuilder.Conventions.Remove<OneToManyCascadeDeleteConvention>();//禁用一对多级联删除
            //表前缀
            modelBuilder.Types().Configure(entity => entity.ToTable(AppConstant.Tableprefix + entity.ClrType.Name));
            // 忽略列映射 Fluent API:NotMapped
            modelBuilder.Entity<ScheduledEvents>().Ignore(p => p.ScheduleType);
 
        }

以上是关于EF OnModelCreating的主要内容,如果未能解决你的问题,请参考以下文章

部署到 IIS8 时 EF 6 与 EF 5 的相对性能问题

EF 学习系列三 数据操作数据加载及EF中执行Sql

ps -ef是啥意思呢?

ef code first db first 哪种好

从 EF 视图到 EF 表的关系

MySQL via EF6 的试用报告