Issues including navigation properties in query
问题 I am using Web API 2 with CORS/Entity Framework 6/Breeze.js from bower for a single page application and the breeze query is not expanding the navigation property. I'll break it down from server to client. // POCOs public class Foo { public int Id { get; set; } public Bar Bar { get; set; } } public class Bar { public int Id { get; set; } public string SomeData { get; set; } } public class FooMap : EntityTypeConfiguration<Foo> { public FooMap() { HasKey(t => t.Id); ToTable("Foo"); Property(t =