AutoClutch.AutoRepo 5.0.1

dotnet add package AutoClutch.AutoRepo --version 5.0.1
NuGet\Install-Package AutoClutch.AutoRepo -Version 5.0.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="AutoClutch.AutoRepo" Version="5.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AutoClutch.AutoRepo --version 5.0.1
#r "nuget: AutoClutch.AutoRepo, 5.0.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 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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,633 12/6/2018
4.6.1 769 10/25/2018
4.6.0 2,464 5/9/2018
4.5.0 4,172 1/5/2017
4.4.0 3,051 10/3/2016
3.12.0 1,549 4/18/2016
3.9.0 1,549 3/22/2016
3.6.0 1,408 12/17/2015
3.5.0 1,651 11/25/2015
3.4.1 1,248 11/24/2015
3.4.0 1,370 11/16/2015
3.3.0 1,347 11/15/2015
3.2.0 1,349 11/13/2015
3.0.0 1,626 11/9/2015
2.0.0 1,339 10/20/2015
1.1.0 1,211 8/24/2015
1.0.8.5 1,419 8/7/2015
1.0.8.4 1,398 8/7/2015
1.0.8.3 1,445 8/7/2015
1.0.8.2 1,362 8/7/2015
1.0.8.1 1,430 8/7/2015
1.0.8 1,422 8/7/2015
1.0.7 1,854 8/7/2015
1.0.6 1,398 6/15/2015
1.0.5 1,363 6/15/2015
1.0.4 1,404 3/13/2015
1.0.1 1,586 11/26/2014
1.0.0 1,965 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.