AutoClutch.AutoRepo
5.0.1
dotnet add package AutoClutch.AutoRepo --version 5.0.1
NuGet\Install-Package AutoClutch.AutoRepo -Version 5.0.1
<PackageReference Include="AutoClutch.AutoRepo" Version="5.0.1" />
paket add AutoClutch.AutoRepo --version 5.0.1
#r "nuget: AutoClutch.AutoRepo, 5.0.1"
// Install AutoClutch.AutoRepo as a Cake Addin #addin nuget:?package=AutoClutch.AutoRepo&version=5.0.1 // Install AutoClutch.AutoRepo as a Cake Tool #tool nuget:?package=AutoClutch.AutoRepo&version=5.0.1
AutoClutch.AutoRepo is a simple generic repository for Entity Framework 6 that can be used to save you coding time when creating a data layer.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- AutoClutch.AutoCore (>= 5.0.0)
- EntityFramework (>= 6.2.0)
- Linq2Rest (>= 4.1.0)
- System.Linq.Dynamic (>= 1.0.7)
- TrackerEnabledDbContext (>= 3.6.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on AutoClutch.AutoRepo:
Package | Downloads |
---|---|
AutoClutch.AutoService
AutoClutch.AutoRepo and AutoService is a simple generic repository and generic service for Entity Framework 6 that can be used to save you coding time when creating a data layer. AutoClutch.AutoService is the business logic layer abstraction on top of the repository. This includes auditing support provided by the 'Tracker-Enabled-DbContext' library. Also includes Linq.Dynamic support from the Microsoft (MS-PL) library. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.0.1 | 1,700 | 12/6/2018 |
4.6.1 | 802 | 10/25/2018 |
4.6.0 | 2,600 | 5/9/2018 |
4.5.0 | 4,383 | 1/5/2017 |
4.4.0 | 3,232 | 10/3/2016 |
3.12.0 | 1,596 | 4/18/2016 |
3.9.0 | 1,605 | 3/22/2016 |
3.6.0 | 1,435 | 12/17/2015 |
3.5.0 | 1,713 | 11/25/2015 |
3.4.1 | 1,276 | 11/24/2015 |
3.4.0 | 1,399 | 11/16/2015 |
3.3.0 | 1,387 | 11/15/2015 |
3.2.0 | 1,395 | 11/13/2015 |
3.0.0 | 1,685 | 11/9/2015 |
2.0.0 | 1,389 | 10/20/2015 |
1.1.0 | 1,245 | 8/24/2015 |
1.0.8.5 | 1,465 | 8/7/2015 |
1.0.8.4 | 1,427 | 8/7/2015 |
1.0.8.3 | 1,474 | 8/7/2015 |
1.0.8.2 | 1,389 | 8/7/2015 |
1.0.8.1 | 1,462 | 8/7/2015 |
1.0.8 | 1,454 | 8/7/2015 |
1.0.7 | 1,910 | 8/7/2015 |
1.0.6 | 1,430 | 6/15/2015 |
1.0.5 | 1,411 | 6/15/2015 |
1.0.4 | 1,437 | 3/13/2015 |
1.0.1 | 1,632 | 11/26/2014 |
1.0.0 | 2,018 | 11/25/2014 |
- v5.0.0
- Added initial support for connecting to OData as a context.
- Incldes the linq2rest library to be able to query OData endpoints with LINQ.
- v4.6.1
- Small fix for context handling. Instead of disposing the context itself, this library will defer to the dependency injector to handle context disposal.
- Bug fix in repository saving.
- v4.6.0
- Downgraded .net library requirement to 4.5.0 from 4.5.2 to help compatibility.
- Upgraded dependent nuget packages.
- v4.5
- Centralized core logic.
- v4.4
- Updated dll property level versioning information.
- Upgraded context configuration level handling.
- Upgraded Tracker Enabled Context.
- v4.3
- Reinserted proxy creation and lazy loading handling back into method level.
- v4.2
- Possible bug fix for heavy load adding with related objects exception.
- v4.1
- Standardized the namespace naming convention.
- Bug fix for the handling of ProxyCreationEnabled and LazyLoadingEnabled.
- v4.0
- Used virtual keyword to enable inherited members to override service and repository methods.
- v3.15
- Speed improvements.
- Run skip, take, distinctby, maxby, in Get() method on the database instead of in memory.
- v3.13
- Speed improvements.
- v3.12
- This version uses the TrackerEnabledDbContext version 3.5.2.
- v3.9
- Instead of throwing an exception when a validation error occurs, add the error to our error list and return null for Add and Update methods.
- v3.6
- Added the ability to set the lazy loading and proxy creation as service and repository public properties.
- v3.5
- Added new experimental method Queryable().
- Bug fix for proxyCreation and lazyLoadingEnabled settings in Get() method.
- v3.4
- Added autoDetectChangesEnabled to the parameter list for many of the methods. This allows an inherited class the ability to tell entity framework whether or not to track the changes in the entity.
- Added EntityAuditLog method to get the history for the entity from the audit library.
- v3.3
- Added tracker-enabled-dbcontext (https://bilal-fazlani.github.io/tracker-enabled-dbcontext), (https://github.com/bilal-fazlani/tracker-enabled-dbcontext) for data audit tracking.
- Added the Linq.Dynamic string query feature to be able to query and orderby based on strings.
- Added the ability to specify if you want lazy loading and/or proxy creation on almost all repository methods.