我想在我的类(模型)中公开来自ASP.NET Core 2.2的Identity框架的用户,以便将操作分配给可以从用户列表中选择的用户。
public abstract class Issue
{
public Guid IssueId { get; set; }
public IssueType IssueType { get; set; }
public string Code { get; set; }
public string Comments { get; set; }
public DateTime StartDate { get; set; }
public DateTime EndDatePrevision { get; set; }
public bool IsExtrajudicial { get; set; }
public IEnumerable<Action> Actions { get; set; }
}
我想在此类中提供用户参考或用户列表。
答案 0 :(得分:0)
我想您可以通过添加一个像这样的新属性来实现这一点:
public IEnumerable<IdentityUser> Users {get; set;}