AzureTableDataManager<T>.UpsertTableEntryAsync(T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts a data entry in the Azure table: creates a new one if does not exists or overwrites (without eTag) an already existing version (the "update in place" semantics).
public System.Threading.Tasks.Task<string> UpsertTableEntryAsync (T data);
member this.UpsertTableEntryAsync : 'T -> System.Threading.Tasks.Task<string>
Public Function UpsertTableEntryAsync (data As T) As Task(Of String)
Parameters
- data
- T
Data to be inserted or replaced in the table.
Returns
Value promise with new Etag for this data entry after completing this storage operation.