LF.EntityFramework.Extention 1.2.1

.NET Framework 4.5
dotnet add package LF.EntityFramework.Extention --version 1.2.1
NuGet\Install-Package LF.EntityFramework.Extention -Version 1.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LF.EntityFramework.Extention" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LF.EntityFramework.Extention --version 1.2.1
#r "nuget: LF.EntityFramework.Extention, 1.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LF.EntityFramework.Extention as a Cake Addin
#addin nuget:?package=LF.EntityFramework.Extention&version=1.2.1

// Install LF.EntityFramework.Extention as a Cake Tool
#tool nuget:?package=LF.EntityFramework.Extention&version=1.2.1

To bulk operation sql server, it have a high efficiency.
Bulk insert 1,000,000 records just need half minute

How to use it:
using LF.EntityFramework.Extention;

var t = DBcontext.Database.BeginTransaction();
DBcontext.BulkInsert(IEnumrobleEntities)
DBcontext.BulkUpdate(IEnumrobleEntities)
DBcontext.BulkDelete(IEnumrobleEntities)
t.Commit();

V1.1.2 --->Support relationship tables!!!
V1.1.6---->update some know bugs
V1.2.1---->Multiple threads handler, faster than faster

Product Versions
.NET Framework net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

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
1.2.1 351 10/11/2022
1.1.6 249 9/30/2022
1.1.4 283 6/17/2022
1.1.2 384 8/19/2021
1.0.2 234 3/29/2021
1.0.1 393 11/6/2020

Faster than Faster, Bulk insert 1,000,000 records just need half minute