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 |
---|---|
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
-
- 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.