XiaoYang.EntityFrameworkCore.Bulk.PostgreSql 6.0.29

dotnet add package XiaoYang.EntityFrameworkCore.Bulk.PostgreSql --version 6.0.29
NuGet\Install-Package XiaoYang.EntityFrameworkCore.Bulk.PostgreSql -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.PostgreSql" Version="6.0.29" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add XiaoYang.EntityFrameworkCore.Bulk.PostgreSql --version 6.0.29
#r "nuget: XiaoYang.EntityFrameworkCore.Bulk.PostgreSql, 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.
// Install XiaoYang.EntityFrameworkCore.Bulk.PostgreSql as a Cake Addin
#addin nuget:?package=XiaoYang.EntityFrameworkCore.Bulk.PostgreSql&version=6.0.29

// Install XiaoYang.EntityFrameworkCore.Bulk.PostgreSql as a Cake Tool
#tool nuget:?package=XiaoYang.EntityFrameworkCore.Bulk.PostgreSql&version=6.0.29

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. 
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
6.0.29 749 2/5/2022
6.0.28 580 12/12/2021
6.0.27-preview 206 11/18/2021
5.0.29 430 2/5/2022
5.0.28 265 12/12/2021
5.0.27 283 11/18/2021
5.0.26 3,416 5/7/2021
5.0.25 332 3/12/2021
3.1.29 426 2/5/2022
3.1.28 256 12/12/2021
3.1.27 286 11/18/2021
3.1.26 409 5/7/2021
3.1.25 402 3/12/2021

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