gpt4 book ai didi

c# - 找不到类型命名空间名称 IdentityUser

转载 作者:太空狗 更新时间:2023-10-29 20:49:13 26 4
gpt4 key购买 nike

对于我包含的最后两个框架,我不断收到此错误。我已经上下搜索了。不知道它是什么。我已经安装了 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; }
}
}

最佳答案

没有必要 -

using IdentityUser;
using IdentityDbContext;

相反,您需要添加以下内容 -

using Microsoft.AspNet.Identity.EntityFramework;

确保您有该 DLL 作为引用,如下所示。如果它不可用,那么您可以从 here 获取该 nuget .

enter image description here

关于c# - 找不到类型命名空间名称 IdentityUser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21642388/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com