gpt4 book ai didi

c# - ASP MVC5 身份用户抽象

转载 作者:太空宇宙 更新时间:2023-11-03 12:53:09 25 4
gpt4 key购买 nike

我想使用默认的 Identity 2 提供程序构建 N-tire Web 应用程序。因此,我的数据层包含具有模型定义的纯 c# 类,没有任何外部依赖性。但是,如果不添加 AspNet.Identity 引用,就不可能将某些类链接到我的应用程序用户。

我尝试制作一个用户类的接口(interface):

public interface ISystemUser
{
string Id { get; set; }
string Title { get; set; }
}

public class Place
{
public int Id { get; set; }
public string Address { get; set; }

public ISystemUser User { get; set; }
}

在基础设施层用实现代替它:

public class ApplicationUser : IdentityUser, ISystemUser
{
public string Title { get; set; }
}
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext() : base("DefaultConnection", throwIfV1Schema: false)
{
}

public DbSet<Place> Places { get; set; }
}

但是 Entity Framework 不会创建实体之间的关系。

是否有任何“正确”的方法来实现这个或者是否需要添加引用?

最佳答案

有一个解决方法,在我看来这很丑陋但有效。

您将需要 2 个类,一个用于 User,另一个用于 ApplicationUserApplicationUser 必须具有 User 的所有属性。像这样:

//Domain Layer
public class User
{
public string Id { get; set; }
public string Title { get; set; }
}

//Infrastructure Layer
public class ApplicationUser
{
public string Title { get; set; }
}

现在,诀窍是将 User 类映射到 ApplicationUser 类的同一个表。像这样:

public class UserConfig : EntityTypeConfiguration<User>
{
public UserConfig()
{
HasKey(u => u.Id);

ToTable("AspNetUsers");
}
}

希望对您有所帮助!

关于c# - ASP MVC5 身份用户抽象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34862770/

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