实体框架“指定的密钥太长;最大密钥长度为 1000 字节”

Posted

技术标签:

【中文标题】实体框架“指定的密钥太长;最大密钥长度为 1000 字节”【英文标题】:Entity Framework "Specified key was too long; max key length is 1000 bytes" 【发布时间】:2018-02-01 00:17:16 【问题描述】:

我有一个使用asp.net-core 2.0 构建的应用程序。

我使用Pomelo.EntityFrameworkCore.mysql来集成MySql。

我在 Startup.cs 中使用的配置是:

public void ConfigureServices(IServiceCollection services)

    services.AddDbContext<ApplicationDbContext>(options => options.UseMySql("Server=localhost;port=3306;database=MyDB;user=MyDb_user;password=test123");
    ...

框架自带的ApplicationUserDbContext如下:

public class ApplicationDbContext : IdentityDbContext<ApplicationUser>

    public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
        : base(options)
    
    

    protected override void OnModelCreating(ModelBuilder builder)
    
        base.OnModelCreating(builder);
        // Customize the ASP.NET Identity model and override the defaults if needed.
        // For example, you can rename the ASP.NET Identity table names and more.
        // Add your customizations after calling base.OnModelCreating(builder);
    

现在在 MySql 中,我使用排序规则“utf8_general_ci”创建了 MyDB。

但在 DB 迁移时我收到错误:

'Specified key was too long; max key length is 1000 bytes'

我发现使用 utf8 的所有解决方案都不适用于 asp.net-core 2.0

asp.net-core 2.0 有什么解决方案

【问题讨论】:

为电子邮件和用户名关闭 unicode 看看这些答案,也许他们会有所帮助:***.com/questions/3489041/…***.com/questions/8746207/…***.com/questions/40109903/… 【参考方案1】:
protected override void Up(MigrationBuilder migrationBuilder)

migrationBuilder.Sql("SET default_storage_engine=INNODB");

Ability to specify engine, charset, ROW_FORMAT and more

【讨论】:

以上是关于实体框架“指定的密钥太长;最大密钥长度为 1000 字节”的主要内容,如果未能解决你的问题,请参考以下文章

错误:#1071 - 指定的密钥太长;最大密钥长度为 1000 字节 - mysql 5.0.91

1071 - 指定的密钥太长;最大密钥长度为 1000 字节 [重复]

voyager php artisan voyager:install --with-dummy 错误

为啥实体框架没有映射我订单中的客户实体?

ADO.NET 实体框架 - 带有实体框架 6 的 Oracle

实体框架分离实体和相关实体消失