EFUtilities 1.0.0

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

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

Adds batch operations to Entity Framework when using MS Sql server

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 (3)

Showing the top 3 NuGet packages that depend on EFUtilities:

Package Downloads
Funcular.DataProviders

•Provides easy bulk insert, delete and update methods without round trips to the database (New in 0.8.5) •Automatically scans assemblies in your AppDomain for configurable entities •No EDMXs •Sets up a SQL Server context with no configuration but a connection string •Does not require you to manually add entity types to your DbSet •By default, picks up any classes derived from EntityTypeConfiguration •One line of code—a predicate—specifies which Types from your assembly are entities Currently supports SQL Server; eventually will handle MongoDB and other underlying stores.

A1MahoCore

A1MahoCore

DataImport

EF批量导入文件数据

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 1,212,698 7/29/2015
1.0.1 11,420 6/10/2015
1.0.0 14,329 5/14/2015
0.5.0 43,356 10/28/2014
0.4.2 3,201 10/21/2014
0.4.1 4,959 8/31/2014
0.4.0 2,864 6/27/2014
0.3.4 1,345 5/1/2014
0.3.3 1,287 1/10/2014
0.3.2 1,222 1/9/2014
0.3.1 1,229 1/4/2014
0.3.0 1,439 1/1/2014
0.2.0 1,314 12/25/2013
0.1.0 2,824 12/22/2013

New in 1.0.0:

BUG FIX: Issue #27 #37 #31 Now supports Model first
BUG FIX: Issue #29 Now (hopefully) supports Visual Basic
BUG FIX: Issue #22 Now ForceDelete properly escaped table name

FEATURE: TPH support for bulk insert. Only TPH is supported as inheritance strategy. And only tested with strings as discriminator column. It only works if the whole list of items to insert is of the same type. If they are not you need to split them and call InsertAll once for each type.

FEATURE: Bulk updates. Similar to the InsertAll. The difference from UpdateByQuery is that you take the values from an in value collection which means each item can have a random update. Useful when doing imports etc etc.

Pull requests:
https://github.com/MikaelEliasson/EntityFramework.Utilities/pull/38