Using AttachTo with a Contained EntitySet

185 Views Asked by At

I have some classes defined as below:

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

I want to use AttachTo to add an object to the DataServiceContext without querying for it first. How can I do this?

1

There are 1 best solutions below

0
NStuke On BEST ANSWER

I was able to do this by doing

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

Not very elegant, but it works.