来自' WSS_Common.Helper.ApplicationUser'没有隐式引用转换。到' Microsoft.AspNet.Identity.EntityFramework.IdentityUser'?

时间:2017-08-16 14:14:35

标签: asp.net-mvc

我已经更改了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;
&#13;
&#13;

指向identityConfig.cs的错误

&#13;
&#13;
 public class ApplicationUserManager : UserManager<ApplicationUser,int>
    {
        public ApplicationUserManager(IUserStore<ApplicationUser,int> store)
            : base(store)
        {
        }
&#13;
&#13;
&#13;

0 个答案:

没有答案