From 59c70bbe6dad7c7a6ae34522566d9a0391cb88df Mon Sep 17 00:00:00 2001 From: NorthernLight1 <49600465+NorthernLight1@users.noreply.github.com> Date: Mon, 22 Apr 2024 23:51:18 -0400 Subject: [PATCH] Update README.md Added Supported Databases --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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. |