Entity Framework with mysql, Table Capitalization issue between linux and windows

后端 未结 4 1711
暗喜
暗喜 2021-02-15 17:07

We are currently developing a product using Code First Entity Framework and Mysql. The development database is hosted in a Windows environement while the production mysql is on

4条回答
  •  故里飘歌
    2021-02-15 17:28

    with EF6 :

          protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            modelBuilder.Types().Configure(entity => entity.ToTable(entity.ClrType.Name.ToLower()));
        }
    

提交回复
热议问题