db first执行时说model没有key

Posted 朋克

tags:

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

原因:自动生成的类中有关联主键,没有自动生成Key及Column

解决方法:在xxx.tt的66行左右修改为

var simpleProperties = typeMapper.GetSimpleProperties(entity);
if (simpleProperties.Any())
{
    var keyIndex = 0; // This is a new line
    foreach (var edmProperty in simpleProperties)
    {
        // The following if block is new
        if (ef.IsKey(edmProperty)) 
        {
#>          [System.ComponentModel.DataAnnotations.Key]
            [System.ComponentModel.DataAnnotations.Schema.Column(Order = <#=keyIndex.ToString()#>)]
<#
            keyIndex++;
#>
<#      }
#>
        <#=codeStringGenerator.Property(edmProperty)#>
<#
    }
}

  

以上是关于db first执行时说model没有key的主要内容,如果未能解决你的问题,请参考以下文章

EF中三大开发模式之DB First,Model First,Code First以及在Production Environment中的抉择

无法从 django 服务器中的数据库上传图像

flask_sqlalchemy获取动态 model名称 和 动态查询

EF Core中的DB First与Code First

Model backing a DB Context has changed; Consider Code First Migrations

C#console app与DB first Entity Framework和AutoMapper,无法将Model转换为DbModel