📅  最后修改于: 2022-03-11 15:00:31.928000             🧑  作者: Mango
public abstract class Person
{
public int ID {get; set;}
[ForeignKey("ApplicationUser")]
public string ApplicationUserId { get; set; }
public virtual ApplicationUser ApplicationUser { get; set; }