我一直在为我包含的最后两个框架收到此错误。我上下搜索过。无法想象它是什么。我已经安装了NuGet包,并尝试重新编译多次。什么都行不通。这是我的代码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using IdentityUser;
using IdentityDbContext;
namespace UserProfileInfo.Models
{
public class UserProfile : IdentityUser
{
public virtual UserProfile UserInfo { get; set; }
}
public class UserProfileDB
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
public class MyDbContext : IdentityDbContext<UserProfile>
{
public MyDbContext()
: base("DefaultConnection")
{
}
public System.Data.Entity.DbSet<UserProfile> UserInfo { get; set; }
}
}
答案 0 :(得分:17)
不需要 -
using IdentityUser;
using IdentityDbContext;
相反,您需要添加以下内容 -
using Microsoft.AspNet.Identity.EntityFramework;
确保将该DLL作为参考,如下所示。如果它不可用,那么您可以从here获得该nuget。
答案 1 :(得分:1)
对于AspNet Core 1,请使用NuGet:
Microsoft.AspNetCore.Identity.EntityFrameworkCore
对于AspNet Core 2,请使用NuGet:
Microsoft.AspNetCore.Identity
答案 2 :(得分:0)
这是针对Dotnet Core的,您不会收到任何警告
using Microsoft.Extensions.Identity.Stores