1

我在 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; }
}

我想用微风.js 查询它,但 ttCategory 没有序列化为 json。我想我把钥匙设置错了?我还尝试将 ttCategory.ID 设置为 ForeignKey,但没有成功。

4

1 回答 1

1

似乎我必须从微风.js 调用 expand 方法来急切加载类别

于 2013-06-21T10:19:30.000 回答