例子:
Parent
class Product
{
int id {get; set;}
string title {get; set;}
Location loc {get; set;}
}
Child
class Location
{
int id {get; set;}
int CityID {get; set;}
}
我可以更新产品和位置,将产品发送到 WCF 数据服务方法“更新”吗?
产品得到更新,但孩子没有!是的,WCF 服务另一端的 EntityData 模型设置为所有关系托管。