BulkInsertEf 1.1.1

dotnet add package BulkInsertEf --version 1.1.1
NuGet\Install-Package BulkInsertEf -Version 1.1.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="BulkInsertEf" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BulkInsertEf --version 1.1.1
#r "nuget: BulkInsertEf, 1.1.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 BulkInsertEf as a Cake Addin
#addin nuget:?package=BulkInsertEf&version=1.1.1

// Install BulkInsertEf as a Cake Tool
#tool nuget:?package=BulkInsertEf&version=1.1.1
Just pass the DbContext as parameter to the constructor and use the following methods as per your needs.
Following methods have been exposed out of this library -
To bulk insert records.

void BulkInsertCommand(IEnumerable<object> values);

To bulk insert records in case of TPT inheritance

void BulkInsertCommandForTPT(IEnumerable<object> values, string parentName, string foreignKeys);

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.

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
1.1.1 1,241 10/8/2017
1.1.0 1,124 10/8/2017
1.0.0 1,080 9/27/2017

Bulk insert for a single class and TPT type inheritance using entity framework.
No limitation on the number of records that can be passed.

Changelog-
1. Now supporting string, number, guids, date, datetime, datetimeoffset and boolean types.
2. Instead of declaring the dbcontext every time, just set it once while declaring the BulkInsert object