EfCore.BulkOperations-Test
0.0.1
dotnet add package EfCore.BulkOperations-Test --version 0.0.1
NuGet\Install-Package EfCore.BulkOperations-Test -Version 0.0.1
<PackageReference Include="EfCore.BulkOperations-Test" Version="0.0.1" />
paket add EfCore.BulkOperations-Test --version 0.0.1
#r "nuget: EfCore.BulkOperations-Test, 0.0.1"
// Install EfCore.BulkOperations-Test as a Cake Addin #addin nuget:?package=EfCore.BulkOperations-Test&version=0.0.1 // Install EfCore.BulkOperations-Test as a Cake Tool #tool nuget:?package=EfCore.BulkOperations-Test&version=0.0.1
EfCore.BulkOperations
EfCore.BulkOperations simplifies bulk operations like insert, update, and delete with efficient SQL queries compatible with most databases.
EfCore.BulkOperations Mapping columns from unique keys. You can configure custom column mapping if needed.
ps. BulkMerge works with MySQL only.
Example
Bulk Insert
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkInsertAsync(items);
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkInsertAsync(
items,
option =>
{
option.BatchSize = 1000;
option.CommandTimeout = 120;
option.IgnoreOnInsert = x => new { x.CreatedAt };
}
);
Bulk Update
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkUpdateAsync(items);
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkUpdateAsync(
items,
option => { option.IgnoreOnUpdate = x => new { x.CreatedAt }; }
);
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkUpdateAsync(
items,
option => { option.UniqueKeys = x => new { x.Id }; }
);
Bulk Delete
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkDeleteAsync(items);
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkDeleteAsync(
items,
option => { option.UniqueKeys = x => new { x.Id }; }
);
Bulk Merge (MySql only)
Do not use BulkMergeAsync with other databases; it relies on a MySQL-specific query.
var items = new List<Product> { new Product("Product1", 100m) };
await _dbContext.BulkMergeAsync(items);
await _dbContext.BulkMergeAsync(
items,
option =>
{
option.IgnoreOnInsert = x => new { x.CreatedAt };
option.IgnoreOnUpdate = x => new { x.CreatedAt };
});
Working with Global Transaction
EfCore.BulkOperations utilizes local transactions within bulk processes. If you require manual transaction control, you can pass an existing transaction into the bulk process.
IDbContextTransaction? transaction = null;
DbConnection? connection = null;
try
{
connection = dbContext.Database.GetDbConnection();
if (connection.State != ConnectionState.Open) await connection.OpenAsync();
transaction = await dbContext.Database.BeginTransactionAsync();
var dbTransaction = transaction.GetDbTransaction();
await dbContext.Products.AddAsync(item1);
await dbContext.SaveChangesAsync();
await dbContext.BulkInsertAsync(list2, null, dbTransaction);
await dbContext.BulkInsertAsync(list3, null, dbTransaction);
throw new DbUpdateException("Internal Server Error");
}
catch (Exception ex)
{
if (transaction is not null) await transaction.RollbackAsync();
throw;
}
finally
{
if (connection is { State: ConnectionState.Open }) await connection.CloseAsync();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Microsoft.EntityFrameworkCore (>= 8.0.4)
- Microsoft.EntityFrameworkCore.Relational (>= 8.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.0.1 | 107 | 7/24/2024 |