LF.EntityFramework.Extention 1.2.3

dotnet add package LF.EntityFramework.Extention --version 1.2.3
NuGet\Install-Package LF.EntityFramework.Extention -Version 1.2.3
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.3" />
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.3
#r "nuget: LF.EntityFramework.Extention, 1.2.3"
#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.3

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

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;

DBContextExtensions.SingleTaskMaxCount = 10000;//more than 10000 entities start multiple threads
DBContextExtensions.TaskCount = 10; //threads count for bulk do it

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

V1.2.1---->Multiple threads handler, faster than faster
V1.2.2---->Add update lock
V1.2.3---->Add Entity Operation
Example:
public class XXX:EntityOperator{}
XXX a =new XXX();
XXX b =new XXX();
System.Dynamic.ExpandoObject c = a+b;
XXX aa=c.ToObject(XXX)();

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
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.3 192 8/24/2023
1.2.2 244 3/27/2023
1.2.1 519 10/11/2022
1.1.6 406 9/30/2022
1.1.4 409 6/17/2022
1.1.2 501 8/19/2021
1.0.2 350 3/29/2021
1.0.1 508 11/6/2020

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