0

我有一些类定义如下:

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 而无需先查询它。我怎样才能做到这一点?

4

1 回答 1

0

我能够做到这一点

context.AttachTo("Tables(\'TableName\')/Entities", tableEntityInstance);

不是很优雅,但它有效。

于 2016-11-10T11:54:46.687 回答