GenericDataManager 1.5.5.1

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

// Install GenericDataManager as a Cake Tool
#tool nuget:?package=GenericDataManager&version=1.5.5.1

A threadsafe data manager that gives IUnitOfWork repositories for each of your entities without you writing any. Each one gives you One(), All(), Count(), Exists(), Add() and so on. (Previous versions are not available after this version). Please keep updating the package in your projects so you get all the bugs fixes. Visit the project site for more details and documentation.

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.3.3 1,140 7/27/2017
2.0.3.2 965 3/13/2017
2.0.1.1 1,097 11/3/2016
2.0.0.48-beta 787 10/15/2016
2.0.0.5-alpha 959 10/12/2016
1.5.5.2 1,149 10/8/2016
1.5.5.1 1,437 9/30/2016

- Fixed: sometimes the QuickLock is already in locked state on creation from worker threads
- Fixed: "Cannot start a new transaction" on DbContext when multiple threads are involved
- Fixed: "There is already an open DataReader" when one thread is iterating over a list and other threads try to access
- Fixed: DataManager correctly keeps track of DbContexts with the threads
- Fixed: multiple threads can simaltaneously access database without locking each other often and throwing TimeoutExpired exception
- Changed: DataManager uses ConnectionParameters struct for initialization rather than multiple parameters
- Changed: DataManager throws AggregateException once when disposing off the DbContexts rather than stopping at the 1st exception