AzureTableDataManager<T>.BulkInsertTableEntries 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 set of new data entries into the table. Fails if the data does already exists.
public System.Threading.Tasks.Task BulkInsertTableEntries (System.Collections.Generic.IReadOnlyCollection<T> collection);
member this.BulkInsertTableEntries : System.Collections.Generic.IReadOnlyCollection<'T (requires 'T : null and 'T :> Microsoft.WindowsAzure.Storage.Table.ITableEntity and 'T : (new : unit -> 'T))> -> System.Threading.Tasks.Task
Public Function BulkInsertTableEntries (collection As IReadOnlyCollection(Of T)) As Task
Parameters
- collection
- IReadOnlyCollection<T>
Data entries to be inserted into the table.
Returns
Completion promise for this storage operation.