diff --git a/README.md b/README.md index a56b804..4c85728 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,12 @@ N.EntityFrameworkCore.Extensions N.EntityFrameworkCore.Extensions extends your DbContext with high-performance bulk operations: BulkDelete, BulkFetch, BulkInsert, BulkMerge, BulkSaveChanges, BulkSync, BulkUpdate, Fetch, FromSqlQuery, DeleteFromQuery, InsertFromQuery, UpdateFromQuery, QueryToCsvFile, SqlQueryToCsvFile -Supports: Transaction, Synchronous & Asynchronous Execution +Supports: Transactions, Synchronous & Asynchronous Execution Inheritance Models: Table-Per-Concrete, Table-Per-Hierarchy, Table-Per-Type +Supported Databases: SQL Server + ### Installation The latest stable version is available on [NuGet](https://www.nuget.org/packages/N.EntityFrameworkCore.Extensions). @@ -184,7 +186,7 @@ Inheritance Models: Table-Per-Concrete, Table-Per-Hierarchy, Table-Per-Type | BulkSaveChanges() | Save changes using high-performance bulk operations. Should be used instead of SaveChanges(). | | BulkSaveChanges( acceptAllChangesOnSave) | Save changes using high-performance bulk operations. Should be used instead of SaveChanges(). | | BulkSaveChangesAsync() | Save changes using high-performance bulk operations. Should be used instead of SaveChanges(). | -| BulkSaveChangesAsync( acceptAllChangesOnSave) | Save changes using high-performance bulk operations. Should be used instead of SaveChanges(). | +| BulkSaveChangesAsync( acceptAllChangesOnSave, cancellationToken) | Save changes using high-performance bulk operations. Should be used instead of SaveChanges(). | | **BulkSync** | | BulkSync(items) | Bulk sync entities in your database. | | BulkSync(items, options) | Bulk sync entities in your database. |