我使用实体框架核心(首先是db),并且需要使用自定义属性扩展模型。
public partial class Student
{
public int Id { get; set; }
public string FullName { get; set; }
public int SchoolId { get; set; }
public School School { get; set; }
}
public partial class School
{
public int Id { get; set; }
public string Name { get; set; }
}
我正在尝试使用部分班级作为学生学校的显示名称,但是我在这里无法访问DbContext。
public partial class Student
{
public string SchoolName { get{return //Name of school from db} }
}
什么是最好的方法?