ExecuteSqlBulk 1.0.0

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

// Install ExecuteSqlBulk as a Cake Tool
#tool nuget:?package=ExecuteSqlBulk&version=1.0.0

Usage

A quick example:

public class Page
{
    [key]
    public int PageId { get; set; }
    public string PageName { get; set; }
    public string PageLink { get; set; }
}

using (var db = new SqlConnection("Data Source=.;uid=;pwd=;database=;"))
{
    //insert
    db.BulkInsert(list);
    
    //update
    row = db.BulkUpdate(list, p => new { p.PageName, p.PageLink }, p => new { p.PageId });
    
    //delete
    row = db.BulkDelete(list, p => new { p.PageId });
    
    //delete all
    db.BulkDelete<Page>();
}
Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.3.0 5,236 4/23/2021
4.2.3 461 11/24/2020
4.1.1 517 7/30/2020
4.1.0 479 7/29/2020
4.0.0 443 7/26/2020
3.4.1 557 5/2/2020
3.4.0 987 9/20/2019
3.3.0 536 8/27/2019
3.2.0 554 8/19/2019
3.1.0 520 8/16/2019
3.0.0 575 7/8/2019
2.0.2 612 5/24/2019
2.0.1 564 5/7/2019
1.0.0 762 11/8/2018