所以我刚刚使用virtual关键字将我的外键属性更改为延迟加载。
在我的实体 SupportTicket 中,我得到了对 UserProfile 的外键引用:
[Required]
public virtual UserProfile Owner { get; set; }
我的 Find 方法如下所示:
public static SupportTicket Find(int id)
{
using (DatabaseContext db = new DatabaseContext())
{
SupportTicket ticket = db.SupportTickets.SingleOrDefault(x => x.Id == id);
return ticket;
}
}
我的问题是,每当我从 Find 方法获得 SupportTicket 时,我都无法访问 SupportTicket 的 UserProfile,因为我在数据库上下文之外。
我以前没有使用过延迟加载,所以我应该包含()实体中的每个外键吗?