CodeOnlyStoredProcedures 2.1.0-pre

This is a prerelease version of CodeOnlyStoredProcedures.
dotnet add package CodeOnlyStoredProcedures --version 2.1.0-pre
NuGet\Install-Package CodeOnlyStoredProcedures -Version 2.1.0-pre
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="CodeOnlyStoredProcedures" Version="2.1.0-pre" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodeOnlyStoredProcedures --version 2.1.0-pre
#r "nuget: CodeOnlyStoredProcedures, 2.1.0-pre"
#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 CodeOnlyStoredProcedures as a Cake Addin
#addin nuget:?package=CodeOnlyStoredProcedures&version=2.1.0-pre&prerelease

// Install CodeOnlyStoredProcedures as a Cake Tool
#tool nuget:?package=CodeOnlyStoredProcedures&version=2.1.0-pre&prerelease

A library for easily calling Stored Procedures in .NET. Works great with Entity Framework Code First models.
Code Only Stored Procedures will not create any Stored Procedures on your database. Instead, its aim is to make it easy to call your existing stored procedures by writing simple code.

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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.0-pre 40 4/18/2015
2.0.0 73 4/12/2015
2.0.0-pre5 36 4/10/2015
2.0.0-pre4 39 3/30/2015
2.0.0-pre3 39 3/17/2015
2.0.0-pre2 37 3/14/2015
2.0.0-pre1 49 11/27/2014
2.0.0-pre 52 10/29/2014
1.3.1 149 10/23/2014
1.3.1-pre 66 10/18/2014
1.3.0 66 10/17/2014
1.3.0-pre-14269-0553 57 9/27/2014
1.2.1 89 9/10/2014
1.2.0 70 9/9/2014
1.1.0 75 8/27/2014
1.1.0-pre-14235-2130 54 8/23/2014
1.0.1 72 8/18/2014
1.0.0 71 6/4/2014
1.0.0-RC-14138-2033 46 5/18/2014
1.0.0-RC-14135-0132 48 5/15/2014
0.6.0-RC-14124-2136 47 5/4/2014
0.5.1-RC-14073-1456 46 3/14/2014
0.5.0-rc-14031-0502 49 1/31/2014
0.4.0-rc-14030-0437 71 1/30/2014
0.3.3-rc-14027-0615 51 1/27/2014
0.3.2-rc-14027-0322 48 1/27/2014
0.3.1-rc-14025-0559 49 1/25/2014
0.3.1-beta-14025-0557 48 1/25/2014
0.2.1-rc-14024-0611 47 1/24/2014
0.2.1-beta-14024-0547 48 1/24/2014
0.1.1 57 1/23/2014
0.0.7 59 1/7/2014
0.0.6.1 58 1/2/2014
0.0.5 59 12/24/2013
0.0.3 58 12/9/2013

2.1.0
Added ability to specify the order in which multiple result sets are returned for hierarchical models.
Added global data transformers, that will be applied for all columns in all stored procedures. These should be specified before any StoredProcedure is created.
Added option to enable numeric conversions for all numeric properties. This should be specified before any StoredProcedure is created.
Fixed bug where System.Single (float in C#) property types could not be returned (it would throw an exception).
Fixed bug where StoredProcedure<dynamic> would not apply any IDataTransformers specified.
         
2.0.0
Removed dependency on SQL Server for all stored procedures (except those that accept Table Valued Parameters)
Results from the dynamic syntax can now be cast explicitly
Result columns can be marked as optional, so if no value is returned, the execution will not fail.
Stored Procedures can return dynamic (which will be an ExpandoObject, with all colums returned by the stored procedure as properties).
Stored Procedures that return hierarchical objects as multiple result sets can now have their relationships automatically discovered
Performance improvements

1.3.1
Fixed bug where none of the named properties of StoredProcedureParameterAttribute could be set on an object, because they were nullable.
Fixed bug where calling a stored procedure that returns results asynchronously could block the calling thread.

1.3.0
Added StoredProcedure.Execute and StoredProcedure.ExecuteAsync methods to more explicitly control dynamic stored procedures.
Added ability to specify an implementation of an interface, so a StoredProcedure can return an IEnumerable<interface>

1.2.1
Added better exception when a model is missing a public parameterless constructor.

1.2.0
Added a much cleaner syntax for calling stored procedures, by using dynamic objects.

1.1.0
Improved exceptions so that it is easier to determine why the data returned doesn't map to your model correctly.
Now ignores read-only properties, so they don't have to be attributed with [NotMapped]

1.0.1
Fixed bug where calling a stored procedure within a Task that was executing on the SynchronizationContext could cause a deadlock.

1.0.0
Added implementation of ToString that will print the stored procedure's schema, name, and parameters.
Significantly improved speed of the code that converts values to enum values.
Added xml comments to all public methods. While not complete documentation, they are a huge first step.