我試圖線了Company
和ApplicationUser : IdentityUser
之間的一個一對多的關係。在我ApplicationUser
I類有:身份3.0實體框架的核心1.0外鍵
public class ApplicationUser : IdentityUser
{
[ForeignKey("CompanyId")]
public int CompanyId { get; set; }
}
public class Company
{
[Key]
public int CompanyId { get; set; }
public string Name { get; set; }
...
}
但我收到System.ArgumentException:
Microsoft.EntityFrameworkCore.Infrastructure.IDbContextFactory 1[TContext]' violates the constraint of type 'TContext'
所以...什麼是您所遇到的問題? –
我收到System.ArgumentException:... Microsoft.EntityFrameworkCore.Infrastructure.IDbContextFactory'1 [TContext]'違反'TContext'類型的約束條件 –
您何時得到此異常以及如何知道它與類有關你展示? –