是否可以在RIA Services实体上拥有也是实体本身的子对象?
public class Project
{
[Key]
public int ID { get; set; }
[Editable(false)]
public String Name { get; set; }
public Machine Machine { get; set; }
}
public class Machine
{
[Key]
public int ID { get; set; }
[Editable(false)]
public String Name { get; set; }
}
答案 0 :(得分:2)
您可以在元数据类中的[Include]
属性上指定Machine
属性,并在对象上下文查询中添加对Include("Machine")
的调用。
答案 1 :(得分:0)
I don't think so,至少不是传统意义上的。