CodeOnlyStoredProcedures by Abraham Heidebrecht

<PackageReference Include="CodeOnlyStoredProcedures" Version="1.2.1" />

 CodeOnlyStoredProcedures 1.2.1

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.

<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
  <metadata>
    <id>CodeOnlyStoredProcedures</id>
    <version>1.2.1</version>
    <title>Code Only Stored Proecedures</title>
    <authors>Abraham Heidebrecht</authors>
    <owners>Abraham Heidebrecht</owners>
    <projectUrl>https://codeonlystoredprocedures.codeplex.com/</projectUrl>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <description>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.</description>
    <releaseNotes>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.

0.6.0
Significantly reduced reflection usage. Now, reflection happens once per result type, and is compiled into a lambda expression. This should help improve performance significantly.
          
0.5.0
Added support for single column result sets without creating a result model. For instance, if your stored procedure returns one string column, you can retrieve the values with a StoredProcedure&lt;string&gt;        

0.4.0
Updated execution logic so the CPU won't spike while running, but commands can still be cancelled.

0.3.0
Added data transformation attribute &amp; IDataTransformer for interning strings.
Added IDataTransformer implementation for trimming strings.

0.2.0
Added data transformation attribute for converting numeric types automatically from their database type to the property type the attribute decorates.
Added data transformation attribute to automatically remove whitespace from strings returned from the database.</releaseNotes>
    <tags>StoredProcedure EntityFramework EF</tags>
    <dependencies>
      <group targetFramework=".NETFramework4.5">
        <dependency id="Microsoft.Bcl.Immutable" version="1.0.34" />
      </group>
      <group targetFramework=".NETFramework4.0">
        <dependency id="EntityFramework" version="6.1.1" />
      </group>
    </dependencies>
    <references>
      <reference file="CodeOnlyStoredProcedure.dll" />
    </references>
  </metadata>
</package>