我试图弄清楚,如何为我的实体实现导航属性......但我的导航属性始终为空:
我设置了两个实体:
实体 1 包含以下行:
public int Id { get; set; }
public ICollection<BestellterArtikel> BestellteArtikel { get; set; }
我的第二个实体如下所示:
public int Id { get; set; }
public int BestellungId { get; set; }
public Bestellung BestellteArtikel { get; set; }
此外,我将此行包含在我覆盖的 OnModelCreating-Method 中:
modelBuilder.Entity<Bestellung>().HasMany(e => e.BestellteArtikel).WithRequired(e => e.Bestellung);
我做错了什么?我忘记了什么重要的事情吗?它必须如此复杂吗?我是否必须在覆盖的方法中为每个属性添加一行?