Npgsql.Bulk 0.13.0-beta1

This is a prerelease version of Npgsql.Bulk.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Npgsql.Bulk --version 0.13.0-beta1
                    
NuGet\Install-Package Npgsql.Bulk -Version 0.13.0-beta1
                    
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.13.0-beta1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Npgsql.Bulk" Version="0.13.0-beta1" />
                    
Directory.Packages.props
<PackageReference Include="Npgsql.Bulk" />
                    
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 Npgsql.Bulk --version 0.13.0-beta1
                    
#r "nuget: Npgsql.Bulk, 0.13.0-beta1"
                    
#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 Npgsql.Bulk@0.13.0-beta1
                    
#: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=Npgsql.Bulk&version=0.13.0-beta1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Npgsql.Bulk&version=0.13.0-beta1&prerelease
                    
Install as a Cake Tool

Npgsql.Bulk

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

.Net 4.5, 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

Available on NuGet:

Install-Package Npgsql.Bulk
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  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 is compatible.  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 is compatible.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.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 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 (2)

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

Package Downloads
Hikari

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

IIMes.Kernel

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.13.0 36,048 4/24/2025
0.13.0-beta1 175 4/24/2025
0.12.0-beta2 509,781 2/6/2024
0.12.0-beta 291 2/6/2024
0.11.0-beta 181,770 3/29/2023
0.10.3 526,785 7/26/2022
0.10.2 4,218 7/25/2022
0.10.1 187,034 12/10/2021
0.10.0 2,376 12/10/2021
0.9.0 546,556 11/19/2020
0.8.4 22,031 11/6/2020
0.8.3.1 1,751 11/2/2020
0.8.3 1,302 10/30/2020
0.8.2 36,244 9/3/2020
0.8.1.1 125,483 4/18/2020
0.8.1 1,408 4/18/2020
0.8.0 36,565 1/18/2020
0.8.0-beta 986 1/5/2020
0.7.7.1 48,909 11/23/2019
0.7.7 10,391 11/14/2019
0.7.6.1 10,098 10/11/2019
0.7.6 8,241 10/6/2019
0.7.5 42,680 9/29/2019
0.7.4 4,754 7/20/2019
0.7.3 1,234 7/20/2019
0.7.2 7,571 6/25/2019
0.7.1 4,643 6/14/2019
0.7.0 9,850 5/19/2019
0.6.9 7,380 4/25/2019
0.6.8 4,732 4/3/2019
0.6.7 1,205 4/2/2019
0.6.6 3,834 3/22/2019
0.6.5 1,222 3/20/2019
0.6.4 2,193 3/2/2019
0.6.3 1,446 2/12/2019
0.6.2 26,558 11/1/2018
0.6.1 7,460 9/14/2018
0.6.0 1,596 9/13/2018
0.5.21 2,091 9/13/2018
0.5.20 1,837 8/23/2018
0.5.19 1,501 8/22/2018
0.5.18 1,499 8/21/2018
0.5.17 1,637 7/23/2018
0.5.16 2,053 5/23/2018
0.5.15 1,902 5/16/2018
0.5.14 1,899 5/1/2018
0.5.13 2,153 2/23/2018
0.5.12 1,979 1/10/2018
0.5.11 2,031 1/9/2018
0.5.10 2,014 12/26/2017
0.5.9 1,889 12/25/2017
0.5.8 2,260 12/11/2017
0.5.7 2,124 12/10/2017
0.5.6 1,885 11/16/2017
0.5.5 1,904 11/1/2017
0.5.4 1,823 10/25/2017
0.5.2 1,878 10/17/2017

Net9 support