我首先在现有数据库中使用代码,但是在将我的某个导航属性设置为延迟加载时遇到了一些问题。即我的代码库中唯一的一对一关系。
实体看起来像这样:
public abstract class DomainObject<T>
{
/// <summary>
/// The Id of this object.
/// </summary>
[Key]
public T Id { get; set; }
}
[Table("Ordre")]
public class KundeOrdre : DomainObject<int>
{
//normal properties above
public virtual Bestilling Bestilling { get; set; }
//Various methods and other navigational properties below
}
[Table("Bestilling")]
public class Bestilling : DomainObject<int>
{
//normal properties above
public virtual KundeOrdre KundeOrdre { get; private set; }
//Various methods and other navigational properties below
}
他们流畅的映射看起来像这样:
modelBuilder.Entity<KundeOrdre>()
.HasRequired<Bestilling>(x => x.Bestilling)
.WithRequiredPrincipal(x => x.KundeOrdre)
.Map(x => x.MapKey(OrderFK));
如果我渴望加载bestilling这似乎按预期工作,但如果我尝试延迟加载它我得到一个对象,其中所有属性为null或默认值。
答案 0 :(得分:3)
我在代码中发现了一个设计错误,bestilling导航属性正在构造函数中实例化。删除该行可以一次修复我的所有问题。