EFUtilities 0.3.0

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

// Install EFUtilities as a Cake Tool
#tool nuget:?package=EFUtilities&version=0.3.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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.5.0 1,917 10/28/2014
0.4.2 117 10/21/2014
0.4.1 2,210 8/31/2014
0.4.0 235 6/27/2014
0.3.4 56 5/1/2014
0.3.3 50 1/10/2014
0.3.2 50 1/9/2014
0.3.1 51 1/4/2014
0.3.0 63 1/1/2014
0.2.0 57 12/25/2013
0.1.0 114 12/22/2013

New in 0.3.0:

Large refactoring to support more complex updates and provide an API that better communicates that these operations are separate from EF Core.

Also refactored all operations to use the provider model which makes it easier to support newer storage models. Also added fallbacks for Update/Delete.

New API examples:
EFBatchOperation.For(db, db.Comments).InsertAll(comments);
EFBatchOperation.For(db, db.Comments).Where(x => x.Text == "a").Update(x => x.Reads, x => x.Reads + 1);
EFBatchOperation.For(db, db.Comments).Where(x => x.Text == "a").Delete();

The update query should now support many of the DbFunctions that EF support. For example AddDays which will translate to a DATEADD:

EFBatchOperation.For(db, db.BlogPosts).Where(b => b.Title == "T2").Update(b => b.Created, b => DbFunctions.AddDays(b.Created, 1));

Now all 3 methods support the case where property names doesn't match the sql column name.

See more at: https://github.com/MikaelEliasson/EntityFramework.Utilities/pull/4