AspNetZero 4.6.1-实体类型“捕获”要求定义主键

时间:2018-12-03 16:05:00

标签: c# .net-core entity-framework-core aspnetboilerplate

我最近将Visual Studio的版本更新为15.8.2。现在,我不再能够构建我的AspNetZero MVC项目。我收到以下错误消息:实体类型“捕获”需要主键。问题是“捕获”在项目中不存在。我相信它已编译。

使用AspNetZero的其他人是否有此问题,并且知道如何解决?

在modelBuilder调试视图中:

EntityType: Capture
Properties: 
  Discriminator (no field, string) Shadow Required AfterSave:Throw 0 0 -1 0 -1
    Annotations: 
      ValueGeneratorFactory: System.Func`3[Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator]
  GroupTempId1 (no field, Nullable<int>) Shadow FK Index 1 1 0 1 -1
  TempId (no field, Nullable<int>) Shadow Required AlternateKey AfterSave:Throw 2 2 1 2 -1
  TempId1 (no field, int) Shadow Required AlternateKey AfterSave:Throw 3 3 2 3 -1
Keys: 
  TempId
  TempId1
Foreign keys: 
  Capture {'GroupTempId1'} -> Group {'TempId1'} ToDependent: Captures
Annotations: 
  Relational:DiscriminatorProperty: Discriminator
  Relational:DiscriminatorValue: Capture
  RelationshipDiscoveryConvention:NavigationCandidates: System.Collections.Immutable.ImmutableSortedDictionary`2[System.Reflection.PropertyInfo,System.Type]

1 个答案:

答案 0 :(得分:0)

我不知道为什么会这样,但是当我从TFS的主分支中重新拉下,清理,重建并在本地播放该项目时,一切又重新开始了。