EFUtilities 1.0.0
See the version list below for details.
dotnet add package EFUtilities --version 1.0.0
NuGet\Install-Package EFUtilities -Version 1.0.0
<PackageReference Include="EFUtilities" Version="1.0.0" />
paket add EFUtilities --version 1.0.0
#r "nuget: EFUtilities, 1.0.0"
// 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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- EntityFramework (>= 6.1.3)
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,333,469 | 7/29/2015 |
1.0.1 | 11,818 | 6/10/2015 |
1.0.0 | 14,377 | 5/14/2015 |
0.5.0 | 45,209 | 10/28/2014 |
0.4.2 | 3,224 | 10/21/2014 |
0.4.1 | 4,990 | 8/31/2014 |
0.4.0 | 2,900 | 6/27/2014 |
0.3.4 | 1,379 | 5/1/2014 |
0.3.3 | 1,326 | 1/10/2014 |
0.3.2 | 1,258 | 1/9/2014 |
0.3.1 | 1,255 | 1/4/2014 |
0.3.0 | 1,475 | 1/1/2014 |
0.2.0 | 1,350 | 12/25/2013 |
0.1.0 | 2,922 | 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