Npgsql.Bulk 0.5.16

There is a newer version of this package available.
See the version list below for details.
dotnet add package Npgsql.Bulk --version 0.5.16
NuGet\Install-Package Npgsql.Bulk -Version 0.5.16
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="Npgsql.Bulk" Version="0.5.16" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Npgsql.Bulk --version 0.5.16
#r "nuget: Npgsql.Bulk, 0.5.16"
#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 Npgsql.Bulk as a Cake Addin
#addin nuget:?package=Npgsql.Bulk&version=0.5.16

// Install Npgsql.Bulk as a Cake Tool
#tool nuget:?package=Npgsql.Bulk&version=0.5.16

Npgsql.Bulk

Helper for performing COPY (bulk insert and update) operation easily, using Entity Framework + Npgsql.

.Net 4.5, Standard 1.5 and Standard 2.0 are supported.

var uploader = new NpgsqlBulkUploader(context);
var data = GetALotOfData();

// To create a lot of objects
uploader.Insert(data);

// To update a lot of objects
uploader.Update(data);

For .Net 4.5 BulkSelect operation is implemented which emulates join in-memory table to DB table. Here is the example:

// We need DbContext first
var context = GetContext();                 

// Obtained a collection of 50k transactions
var transactions = GetListOfTransction();   

// Need to get prices from DB for all transactions, do it with 1 SQL call
var prices = context.Prices.BulkSelect(
    x => new { x.Ticker, x.TradedOn },                      // need to specify key for JOIN
    transactions.Select(x => new { x.Ticker, x.TradedOn })  // obtain key data from local objects
);

// Done, prices variable now contains List<Price> which matches the JOIN DB table to in-memory collection

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.5 is compatible.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.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. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Npgsql.Bulk:

Package Downloads
Hikari

C#数据库连接池,管理多数据库连接

BlueBitSoft.BlueUtility

Package Description

IIMes.Kernel

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.12.0-beta2 5,087 2/6/2024
0.12.0-beta 187 2/6/2024
0.11.0-beta 81,906 3/29/2023
0.10.3 306,747 7/26/2022
0.10.2 3,897 7/25/2022
0.10.1 157,247 12/10/2021
0.10.0 1,803 12/10/2021
0.9.0 417,568 11/19/2020
0.8.4 21,678 11/6/2020
0.8.3.1 1,559 11/2/2020
0.8.3 1,098 10/30/2020
0.8.2 35,354 9/3/2020
0.8.1.1 119,372 4/18/2020
0.8.1 1,212 4/18/2020
0.8.0 35,963 1/18/2020
0.8.0-beta 835 1/5/2020
0.7.7.1 44,565 11/23/2019
0.7.7 10,155 11/14/2019
0.7.6.1 9,314 10/11/2019
0.7.6 7,294 10/6/2019
0.7.5 35,534 9/29/2019
0.7.4 4,509 7/20/2019
0.7.3 1,060 7/20/2019
0.7.2 7,355 6/25/2019
0.7.1 4,404 6/14/2019
0.7.0 8,225 5/19/2019
0.6.9 7,155 4/25/2019
0.6.8 4,540 4/3/2019
0.6.7 1,018 4/2/2019
0.6.6 3,539 3/22/2019
0.6.5 1,035 3/20/2019
0.6.4 1,956 3/2/2019
0.6.3 1,235 2/12/2019
0.6.2 26,215 11/1/2018
0.6.1 7,170 9/14/2018
0.6.0 1,338 9/13/2018
0.5.21 1,843 9/13/2018
0.5.20 1,616 8/23/2018
0.5.19 1,280 8/22/2018
0.5.18 1,274 8/21/2018
0.5.17 1,325 7/23/2018
0.5.16 1,644 5/23/2018
0.5.15 1,479 5/16/2018
0.5.14 1,498 5/1/2018
0.5.13 1,721 2/23/2018
0.5.12 1,553 1/10/2018
0.5.11 1,496 1/9/2018
0.5.10 1,491 12/26/2017
0.5.9 1,458 12/25/2017
0.5.8 1,698 12/11/2017
0.5.7 1,577 12/10/2017
0.5.6 1,462 11/16/2017
0.5.5 1,499 11/1/2017
0.5.4 1,400 10/25/2017
0.5.2 1,456 10/17/2017

Json format support is added