asp.net – 为什么这违反了类型约束?

前端之家收集整理的这篇文章主要介绍了asp.net – 为什么这违反了类型约束?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试自定义ASP.NET身份3,以便它使用整数键:
  1. public class ApplicationUserLogin : IdentityUserLogin<int> { }
  2. public class ApplicationUserRole : IdentityUserRole<int> { }
  3. public class ApplicationUserClaim : IdentityUserClaim<int> { }
  4.  
  5. public sealed class ApplicationRole : IdentityRole<int>
  6. {
  7. public ApplicationRole() { }
  8. public ApplicationRole(string name) { Name = name; }
  9. }
  10.  
  11. public class ApplicationUserStore : UserStore<ApplicationUser,ApplicationRole,ApplicationDbContext,int>
  12. {
  13. public ApplicationUserStore(ApplicationDbContext context) : base(context) { }
  14. }
  15.  
  16. public class ApplicationRoleStore : RoleStore<ApplicationRole,int>
  17. {
  18. public ApplicationRoleStore(ApplicationDbContext context) : base(context) { }
  19. }
  20.  
  21. public class ApplicationUser : IdentityUser<int>
  22. {
  23. }
  24.  
  25. public sealed class ApplicationDbContext : IdentityDbContext<ApplicationUser,int>
  26. {
  27. private static bool _created;
  28.  
  29. public ApplicationDbContext()
  30. {
  31. // Create the database and schema if it doesn't exist
  32. if (!_created) {
  33. Database.AsRelational().Create();
  34. Database.AsRelational().CreateTables();
  35. _created = true;
  36. }
  37. }
  38. }

这可以编译好,但是会抛出一个运行时错误

System.TypeLoadException

GenericArguments[0],‘TeacherPlanner.Models.ApplicationUser’,on ‘Microsoft.AspNet.Identity.EntityFramework.UserStore`4[TUser,TRole,TContext,TKey]’ violates the constraint of type parameter ‘TUser’.

UserStore的签名是:

  1. public class UserStore<TUser,TKey>
  2. where TUser : Microsoft.AspNet.Identity.EntityFramework.IdentityUser<TKey>
  3. where TRole : Microsoft.AspNet.Identity.EntityFramework.IdentityRole<TKey>
  4. where TContext : Microsoft.Data.Entity.DbContext
  5. where TKey : System.IEquatable<TKey>

ApplicationUser正是一个IdentityUser< int>。这不是它在寻找什么吗?

解决方法

进入这个问题。这是在startup.cs文件中崩溃。
  1. services.AddIdentity<ApplicationUser,ApplicationIdentityRole>()
  2. .AddEntityFrameworkStores<ApplicationDbContext>()
  3. .AddDefaultTokenProviders();

  1. services.AddIdentity<ApplicationUser,ApplicationIdentityRole>()
  2. .AddEntityFrameworkStores<ApplicationDbContext,int>()
  3. .AddDefaultTokenProviders();

宣布关键类型似乎超越了崩溃

猜你在找的asp.Net相关文章