Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 370 Bytes

File metadata and controls

14 lines (11 loc) · 370 Bytes

NpgsqlBulkHelper

NuGet

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

var inserted = await bulkCopy.WriteToServerAsync(source);