我已经更改了ASP.NET身份用户的主键 this documentation并在成功完成后我获得了following errors。
我已尝试过GetUserId,但它无法使用。
这是WSSCONTEXT.cs中的错误
public class Context : Microsoft.AspNet.Identity.EntityFramework.IdentityDbContext<ApplicationUser>
{
public Context() : base("name=Context")
{
System.Data.Entity.Database.SetInitializer(
new MigrateDatabaseToLatestVersion<Context,
WSS_Common.Migrations.Configuration>("Context")
);
}
&#13;
指向identityConfig.cs的错误
public class ApplicationUserManager : UserManager<ApplicationUser,int>
{
public ApplicationUserManager(IUserStore<ApplicationUser,int> store)
: base(store)
{
}
&#13;