DbDataAdapter UpdateAsync Method (String, RecordSet, CancellationToken)NReco.Data Class Library Documentation
An asynchronous version of Update(String, RecordSet) that calls the respective INSERT, UPDATE, or DELETE statements for each added, updated, or deleted row in the specified RecordSet.

Namespace: NReco.Data
Assembly: NReco.Data (in NReco.Data.dll) Version: 1.0.2
Syntax

public Task<int> UpdateAsync(
	string tableName,
	RecordSet recordSet,
	CancellationToken cancel
)

Return Value

Type: Task Int32 
The number of rows successfully updated.
See Also