我正在使用.NET Framework 4.5.1和Asp.Net Identity 2.1.0开发Web Api 2.2应用程序。
我不确定我在做什么,但我想将我的数据库与ASP.NET Identity数据库合并,我已经这样做了:
我自己的dbContext
。
public class EFDbContext : IdentityDbContext, IUnitOfWork
我自己的User
班。
public class User :
IdentityUser<long,
IdentityUserLogin<long>,
IdentityUserRole<long>,
IdentityUserClaim<long>
>
但是当我这样做时:
UserManager<User> _userManager;
我收到此错误:
类型Data.Models.User
不能用作TUser
类型的参数。没有从Data.Models.User
到Microsoft.AspNet.Identity.IUser<string>
的任何明确转换。
我这样做是因为我希望将IdentityUser.Id
设为long
而不是string
。
如何解决此错误?
更新
用UserManager
更新UserManager后UserManager<User, long> _userManager;
我在这里得到了三个错误:
EFDbContext_ctx = context as EFDbContext;
_userManager = new UserManager<User, long>(new UserStore<User>(_ctx));
- “Microsoft.AspNet.Identity.UserManager.UserManager(Microsoft.AspNet.Identity.IUserStore)”方法重载的最佳匹配包含一些无效参数 -
- 类型'Data.Models.User'不能用作'TUser'类型的参数或泛型方法 'Microsoft.AspNet.Identity.EntityFramework.UserStore'。没有从'Data.Models.User'到'Microsoft.AspNet.Identity.EntityFramework.IdentityUser'的隐式引用的转换。
- 参数1:无法从“Microsoft.AspNet.Identity.EntityFramework.UserStore”转换为“Microsoft.AspNet.Identity.IUserStore”
醇>
如何修复此新错误?
答案 0 :(得分:5)
答案 1 :(得分:1)
当您使用自己的User类进行扩展时,您必须提供Identity使用的所有类型。
这是我的上下文类,请注意我使用string作为键:
public class EarlyDetectionContext
: IdentityDbContext<User, Role, string, EDLogin, RoleUserAssociation, EDClaim>
当然,您还需要为角色userlogin,userclaim和userroles创建类。 这是我的:
public class EDClaim : IdentityUserClaim<string>
{
}
public class EDLogin : IdentityUserLogin<string>
{
}
[Table("Roles", Schema = "ED")]
public class Role : IdentityRole<string, RoleUserAssociation>
{
[Required, Column("DisplayName")]
public string DisplayName { get; set; }
[Required, Column("Created")]
public DateTime Created { get; set; }
[Required, Column("Updated")]
public DateTime Updated { get; set; }
[Required, Column("Deleted")]
public bool Deleted { get; set; }
}
[Table("RoleUserAssociations", Schema = "ED")]
public class RoleUserAssociation : IdentityUserRole<string>
{
//
// Due to Identity 2 the Id needs to of string type
//
[Key]
[Required]
public string ID { get; set; }
//[Required, Column("User_Id")]
//public User User { get; set; }
//[Required, Column("Role_Id")]
//public Role Role { get; set; }
[Required, Column("Created")]
public DateTime Created { get; set; }
[Required, Column("Updated")]
public DateTime Updated { get; set; }
[Required, Column("Deleted")]
public bool Deleted { get; set; }
}
[Table("Users", Schema = "ED")]
public class User : IdentityUser<string, EDLogin, RoleUserAssociation, EDClaim>
{
// This is needed for the new Identity 2 framework
public async Task<ClaimsIdentity> GenerateUserIdentityAsync(UserManager<User, string> manager)
{
// Note the authenticationType must match the one defined in CookieAuthenticationOptions.AuthenticationType
var userIdentity = await manager.CreateIdentityAsync(this, DefaultAuthenticationTypes.ApplicationCookie);
// Add custom user claims here
return userIdentity;
}
[Required, Column("Municipality_Id")]
public Municipality Municipality { get; set; }
public string PasswordSalt { get; set; }
[Required, Column("FirstName")]
public string FirstName { get; set; }
[Required, Column("LastName")]
public string LastName { get; set; }
[Column("Title")]
public string Title { get; set; }
[Required, Column("Created")]
public DateTime Created { get; set; }
[Required, Column("Updated")]
public DateTime Updated { get; set; }
[Required, Column("Deleted")]
public bool Deleted { get; set; }
public bool Complete { get; set; }
[Required]
public DateTime Activated { get; set; }
}
你需要在每个类上指定键类型,在我的例子中是一个字符串,在你的情况下为long。 另请注意我的声明和登录类是空的。没关系,我不必在我的情况下添加任何功能或属性,但我确实需要指定它们。
需要User类中的GenerateUserIdentityAsync方法。
在Startup.Auth.cs文件中,您需要添加:
// Configure the db context, user manager and signin manager to use a single instance per request
app.CreatePerOwinContext(EarlyDetectionContext.Create);
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);
您还需要OWIN启动类(可以通过右键单击 - 添加 - 新项目添加)和Identity.cs文件。
如果您可以阅读德语,请查看此blog
它基本上描述了你想要做的事情。 (尽管使用db-first方法)
还要看他的video(他说英语很好)
而part 2也是如此。
我希望这能为您提供足够的信息以便继续前进:)