我在EF中有一对一的关系。
public partial class ttQuestion
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long ID { get; set; }
public Nullable<long> CategoryID { get; set; }
[ForeignKey("CategoryID")]
public virtual ttCategory ttCategory { get; set; }
}
public partial class ttCategory
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long ID { get; set; }
}
我想用breeze.js查询它,但是ttCategory没有序列化为json。我想我把钥匙设置错了?我还尝试将ttCategory.ID设置为ForeignKey但没有成功。
答案 0 :(得分:1)
似乎我必须从breeze.js调用expand方法来急切加载类别