Npgsql.Bulk 0.8.4

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

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.  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. 
.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 22,307 4/24/2025
0.13.0-beta1 163 4/24/2025
0.12.0-beta2 457,722 2/6/2024
0.12.0-beta 280 2/6/2024
0.11.0-beta 165,512 3/29/2023
0.10.3 512,972 7/26/2022
0.10.2 4,178 7/25/2022
0.10.1 186,025 12/10/2021
0.10.0 2,348 12/10/2021
0.9.0 538,420 11/19/2020
0.8.4 21,994 11/6/2020
0.8.3.1 1,719 11/2/2020
0.8.3 1,268 10/30/2020
0.8.2 36,210 9/3/2020
0.8.1.1 125,321 4/18/2020
0.8.1 1,383 4/18/2020
0.8.0 36,524 1/18/2020
0.8.0-beta 959 1/5/2020
0.7.7.1 48,668 11/23/2019
0.7.7 10,348 11/14/2019
0.7.6.1 9,988 10/11/2019
0.7.6 8,216 10/6/2019
0.7.5 42,087 9/29/2019
0.7.4 4,720 7/20/2019
0.7.3 1,206 7/20/2019
0.7.2 7,536 6/25/2019
0.7.1 4,612 6/14/2019
0.7.0 9,772 5/19/2019
0.6.9 7,349 4/25/2019
0.6.8 4,696 4/3/2019
0.6.7 1,175 4/2/2019
0.6.6 3,800 3/22/2019
0.6.5 1,192 3/20/2019
0.6.4 2,164 3/2/2019
0.6.3 1,418 2/12/2019
0.6.2 26,521 11/1/2018
0.6.1 7,428 9/14/2018
0.6.0 1,565 9/13/2018
0.5.21 2,055 9/13/2018
0.5.20 1,808 8/23/2018
0.5.19 1,471 8/22/2018
0.5.18 1,469 8/21/2018
0.5.17 1,591 7/23/2018
0.5.16 1,983 5/23/2018
0.5.15 1,819 5/16/2018
0.5.14 1,829 5/1/2018
0.5.13 2,086 2/23/2018
0.5.12 1,908 1/10/2018
0.5.11 1,938 1/9/2018
0.5.10 1,923 12/26/2017
0.5.9 1,819 12/25/2017
0.5.8 2,163 12/11/2017
0.5.7 2,026 12/10/2017
0.5.6 1,807 11/16/2017
0.5.5 1,835 11/1/2017
0.5.4 1,754 10/25/2017
0.5.2 1,809 10/17/2017

Import doesn't use attach entities anymore