User-2089506584 posted
Error is "The context is not currently tracking the entity."
Dim myAccount As CloudStorageAccount = 'connection-to-cloud-table'
Dim clientTable = myAccount.CreateCloudTableClient()
Dim serviceContextTable = clientTable.GetDataServiceContext()
Dim query As CloudTableQuery(Of NOrthwind) = _
(From ent In serviceContextTable.CreateQuery(Of NOrthwind)("azure-table-name-here")
Where ent.PartitionKey = "test-partitionKey" And ent.RowKey = "test-rowKey").AsTableServiceQuery()
serviceContextTable.DeleteObject(query) '<<<--error here
serviceContextTable.SaveChangesWithRetries()
Why I get such error? I only want to delete a single row.