Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

ghost1face/EntityFramework.BulkInsert

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

  • EntityFramework6.BulkInsert NuGet

  • EntityFramework6.BulkInsert.SqlServerCe NuGet

  • EntityFramework6.BulkInsert.MySql NuGet

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

About

Fast bulk insert for EntityFramework6

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.