EntityFramework6.BulkInsert
6.0.3.10
dotnet add package EntityFramework6.BulkInsert --version 6.0.3.10
NuGet\Install-Package EntityFramework6.BulkInsert -Version 6.0.3.10
<PackageReference Include="EntityFramework6.BulkInsert" Version="6.0.3.10" />
paket add EntityFramework6.BulkInsert --version 6.0.3.10
#r "nuget: EntityFramework6.BulkInsert, 6.0.3.10"
// Install EntityFramework6.BulkInsert as a Cake Addin #addin nuget:?package=EntityFramework6.BulkInsert&version=6.0.3.10 // Install EntityFramework6.BulkInsert as a Cake Tool #tool nuget:?package=EntityFramework6.BulkInsert&version=6.0.3.10
EntityFramework.BulkInsert
Updated port of EntityFramework.BulkInsert from the original version on the Codeplex site. This is not my original project, this is to keep it going and add minor updates and support. The original was hosted on Codeplex but later taken down. Since then the project has seen support for async IO, bug fixes, explicit transaction support and support for MySql.
NuGet
There are several NuGet packages available:
Purpose
The purpose of this library is for performing Bulk Inserts using EntityFramework 6 and your existing DbContext
instance to perform faster inserts instead of generating multiple insert statements for a collection of strongly typed objects.
Usage
IEnumerable<Car> cars = GenerateCars();
using (var context = GetDbContext())
{
context.BulkInsert<Car>(cars);
}
Async IO support is also built in:
IEnumerable<Car> cars = GenerateCars();
using (var context = GetDbContext())
{
await context.BulkInsertAsync<Car>(cars);
}
This library supports Explicit and Implicit transactions either using IDbTransaction
or TransactionScope
Building
To build/compile clone this repository and build:
git clone https://github.com/ghost1face/EntityFramework.BulkInsert.git
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- EntityFramework (>= 6.1.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on EntityFramework6.BulkInsert:
Package | Downloads |
---|---|
SimpleEventSourcing.EntityFramework
Library for simple event sourcing |
|
MyNet.Common.Mvc
Description |
GitHub repositories
This package is not used by any popular GitHub repositories.