Joti.Bulk 0.5.1

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

// Install Joti.Bulk as a Cake Tool
#tool nuget:?package=Joti.Bulk&version=0.5.1

.NET package for Bulk operations in SQL Server using DbConnection or DbContext (Entity Framework )

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
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
0.6.0 2,845 9/17/2015
0.5.2 1,813 10/27/2014
0.5.1 1,663 6/4/2014

.NET package for Bulk operations in SQL Server using DbConnection or DbContext (Entity Framework). It is based on extension methods available by using the namespace Joti.Connection.Bulk or Joti.Entity.Bulk.

Tested for
   * .NET 4.0 - 4.5
   * Entity Framework 4.2.0.0 - 6.1.0

Versions:
   * Future
       - Check of primary keys handling
       - Project site
   * 0.5.1(Current)  
       - First public version
   * 0.1-0.5
       - Private development versions

QuickStart/Crashcourse DBConnection:
    These bulk methods extends Dbconnection and takes a DataTable or a list of objects.
   Joti.Data.Helper.ToDataTable can convert objects to DataTable.
   
     var conn = New SqlConnection(connectionString);
      conn.BulkDelete(myTableName);
      conn.BulkInsert(insertObjects, myTableName);
      conn.BulkUpdate(updateObjects, myTableName);
      conn.BulkDelete(deleteObjects, myTableName);

    It's possible to override the column constraints handling with the optional IColumnConstraints

QuickStart/Crashcourse DbContext:
    Decorate the DbContext with the IDbContextBulk from namespace Joti.Entity.Bulk:

      public class MyOwnContext : DbContext, IDbContextBulk
      {
          public DbSet&lt;MyEntity&gt; MyEntities{ get; set; }
      }

    Create a context and use the extension methods:

      var context = new MyOwnContext();
      context.BulkDelete&lt;MyOwnContext, MyEntity&gt;();
      context.BulkInsert(entitiesInsert);
      context.BulkUpdate(entitiesUpdate);
      context.BulkDelete(entitiesDelete);

    It's possible to override the entity conversion with the optional IEntitiesConverter