CodeNode.Datalayer 1.0.0.1

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

// Install CodeNode.Datalayer as a Cake Tool
#tool nuget:?package=CodeNode.Datalayer&version=1.0.0.1

This package is complete wrapper of ADO.NET and provide very easy access of all required functions in very efficient way.

For e.g.:

var request = new AdhocRequest("procName", CommandType.StoredProcedure);

request.Params.Add(new AdhocParameter("Id", 123));

request.Params.Add(new AdhocParameter("Name", "Rahul");

If you expecting a list of T from your stored procedure:

using (var dataReader = new DataProvider().ExecuteDataReader(request))

{

result = dataReader.MapToList<ModelType>();

}

If we expecting a single record of T:

using (var dataReader = new DataProvider().ExecuteDataReader(request))

{

result = dataReader.MapToObject<ModelType>();

}

For more information please look at project site.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  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.

This package has no dependencies.

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
1.0.4 2,815 10/19/2015
1.0.0.4 1,822 8/8/2015
1.0.0.3 1,628 6/4/2015
1.0.0.2 1,699 5/23/2015
1.0.0.1 1,650 5/16/2015
1.0.0 1,828 5/12/2015

Added support for NET40 framework.