An open API service indexing awesome lists of open source software.

https://github.com/usausa/npgsql-bulk-helper

BulkCopy helper for Npgsql.
https://github.com/usausa/npgsql-bulk-helper

bulk-copy bulk-loader bulkcopy bulkloader npgsql postgres postgresql

Last synced: 29 days ago
JSON representation

BulkCopy helper for Npgsql.

Awesome Lists containing this project

README

          

# NpgsqlBulkHelper

[![NuGet](https://img.shields.io/nuget/v/NpgsqlBulkHelper.svg)](https://www.nuget.org/packages/NpgsqlBulkHelper)

```csharp
await using var con = new NpgsqlConnection(ConnectionString);
await con.OpenAsync();
var bulkCopy = new NpgsqlBulkCopy(con)
{
DestinationTableName = "data"
};

var inserted = await bulkCopy.WriteToServerAsync(source);
```