gpt4 book ai didi

c# - 将 IdentityUser 关联到 EF Core 中的实体

转载 作者:行者123 更新时间:2023-11-30 23:01:15 28 4
gpt4 key购买 nike

下面是 IdentityUser 子类和一个简单的实体。如何在 Entity 类中引用 IdentityUser?此应用程序正在使用 Entity Framework Core。

ApplicationUser.cs

using Microsoft.AspNetCore.Identity;

namespace MyProject.Models
{
public class ApplicationUser : IdentityUser
{

}
}

Entity.cs

namespace MyProject.Models
{
public class Entity
{
public int EntityId { get; set; }

/* What belongs here to associate to a user? */
}
}

最佳答案

约定优于配置的方式是:

public class Entity
{
public int EntityId { get; set; }
public string ApplicationUserId { get; set; }

public ApplicationUser ApplicationUser { get; set; }
}

下面是可选的,如果不需要获取用户的所有Entities可以省略。

public class ApplicationUser : IdentityUser
{
public ICollection<Entity> Entities { get; set; }
}

关于c# - 将 IdentityUser 关联到 EF Core 中的实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51115799/

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