我有一些类定义如下:
public class Table
{
[Key]
public string Name { get; set; }
[Contained]
public IList<TableEntity> Entities { get; set; }
}
public class TableEntity
{
[Key]
public string Partition { get; set; }
}
我想使用 AttachTo 将对象添加到 DataServiceContext 而无需先查询它。我怎样才能做到这一点?