XiaoYang.EntityFrameworkCore.Bulk.Relational 6.0.29

dotnet add package XiaoYang.EntityFrameworkCore.Bulk.Relational --version 6.0.29
                    
NuGet\Install-Package XiaoYang.EntityFrameworkCore.Bulk.Relational -Version 6.0.29
                    
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="XiaoYang.EntityFrameworkCore.Bulk.Relational" Version="6.0.29" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="XiaoYang.EntityFrameworkCore.Bulk.Relational" Version="6.0.29" />
                    
Directory.Packages.props
<PackageReference Include="XiaoYang.EntityFrameworkCore.Bulk.Relational" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add XiaoYang.EntityFrameworkCore.Bulk.Relational --version 6.0.29
                    
#r "nuget: XiaoYang.EntityFrameworkCore.Bulk.Relational, 6.0.29"
                    
#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.
#:package XiaoYang.EntityFrameworkCore.Bulk.Relational@6.0.29
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=XiaoYang.EntityFrameworkCore.Bulk.Relational&version=6.0.29
                    
Install as a Cake Addin
#tool nuget:?package=XiaoYang.EntityFrameworkCore.Bulk.Relational&version=6.0.29
                    
Install as a Cake Tool

Entity Framework Core Batch Extensions for INSERT UPDATE DELETE UPSERT MERGE operations by generating SQLs. NOTE that you should install the corresponding provider package.

Commonly Used Extension Methods:
     DbContext.Auditlogs.Where(a => a.Time == DateTime.Now.AddDays(-30)).BatchDelete();
     DbContext.Employees.Where(a => a.IsActive).BatchUpdate(a => new Employee { Salary = a.Salary + 10000 });
     DbContext.Votes.Upsert(() => new Vote { CommentId = cid, Votes = 1 }, v => new Vote { Votes = v.Votes + 1 });

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on XiaoYang.EntityFrameworkCore.Bulk.Relational:

Package Downloads
XiaoYang.EntityFrameworkCore.Bulk.SqlServer

Entity Framework Core Batch Extensions for INSERT UPDATE DELETE UPSERT MERGE operations by generating SQLs. NOTE that you should install the corresponding provider package. Commonly Used Extension Methods: DbContext.Auditlogs.Where(a => a.Time == DateTime.Now.AddDays(-30)).BatchDelete(); DbContext.Employees.Where(a => a.IsActive).BatchUpdate(a => new Employee { Salary = a.Salary + 10000 }); DbContext.Votes.Upsert(() => new Vote { CommentId = cid, Votes = 1 }, v => new Vote { Votes = v.Votes + 1 });

XiaoYang.EntityFrameworkCore.Bulk.MySql

Entity Framework Core Batch Extensions for INSERT UPDATE DELETE UPSERT MERGE operations by generating SQLs. NOTE that you should install the corresponding provider package. Commonly Used Extension Methods: DbContext.Auditlogs.Where(a => a.Time == DateTime.Now.AddDays(-30)).BatchDelete(); DbContext.Employees.Where(a => a.IsActive).BatchUpdate(a => new Employee { Salary = a.Salary + 10000 }); DbContext.Votes.Upsert(() => new Vote { CommentId = cid, Votes = 1 }, v => new Vote { Votes = v.Votes + 1 });

XiaoYang.EntityFrameworkCore.Bulk.PostgreSql

Entity Framework Core Batch Extensions for INSERT UPDATE DELETE UPSERT MERGE operations by generating SQLs. NOTE that you should install the corresponding provider package. Commonly Used Extension Methods: DbContext.Auditlogs.Where(a => a.Time == DateTime.Now.AddDays(-30)).BatchDelete(); DbContext.Employees.Where(a => a.IsActive).BatchUpdate(a => new Employee { Salary = a.Salary + 10000 }); DbContext.Votes.Upsert(() => new Vote { CommentId = cid, Votes = 1 }, v => new Vote { Votes = v.Votes + 1 });

XiaoYang.EntityFrameworkCore.Bulk.Sqlite

Entity Framework Core Batch Extensions for INSERT UPDATE DELETE UPSERT MERGE operations by generating SQLs. NOTE that you should install the corresponding provider package. Commonly Used Extension Methods: DbContext.Auditlogs.Where(a => a.Time == DateTime.Now.AddDays(-30)).BatchDelete(); DbContext.Employees.Where(a => a.IsActive).BatchUpdate(a => new Employee { Salary = a.Salary + 10000 }); DbContext.Votes.Upsert(() => new Vote { CommentId = cid, Votes = 1 }, v => new Vote { Votes = v.Votes + 1 });

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.0.29 14,711 2/5/2022
6.0.28 2,527 12/12/2021
6.0.27-preview 806 11/18/2021
5.0.29 1,929 2/5/2022
5.0.28 820 12/12/2021
5.0.27 860 11/18/2021
5.0.26 6,407 5/7/2021
5.0.25 857 3/12/2021
3.1.29 1,756 2/5/2022
3.1.28 836 12/12/2021
3.1.27 858 11/18/2021
3.1.26 1,152 5/7/2021
3.1.25 1,173 3/12/2021

Brings DELETE / UPDATE / INSERT INTO SELECT / UPSERT / MERGE INTO into Various EFCore provider.