📜  student roll mvc - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:31.928000             🧑  作者: Mango

代码示例3
public abstract class Person
    {
    public int ID {get; set;}
    [ForeignKey("ApplicationUser")]
    public string ApplicationUserId { get; set; }
    public virtual ApplicationUser ApplicationUser { get; set; }