SqlSharpener 1.0.10

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

// Install SqlSharpener as a Cake Tool
#tool nuget:?package=SqlSharpener&version=1.0.10

Parses SQL files to create a meta-object hierarchy with which you can generate C# code such as stored procedure wrappers or Entity Framework entities. Includes templates. Go to https://github.com/aeslinger0/sqlsharpener for more info!

There are no supported framework assets in this 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.10 9,503 5/26/2015
1.0.9 1,007 5/14/2015

05/26/2015 : version 1.0.10
-- Added primary and foreign key relationships to the meta-model.

05/14/2015 : version 1.0.9
-- Added support for UNION clauses.
-- Added support for table-valued parameters.
-- Added support for generic POCO objects.
-- Fixed bugs with multi-set results.
-- Added null-check for SqlReader when reading nullable columns.
-- Made all methods virtual.

04/28/2015 : version 1.0.8
-- Added function overloads that accept an object with a property for each parameter.
-- Added views to the meta builder.
-- Made primatives nullable only if database column is nullable.
-- Made connection string a constructor parameter (so it can be injected with Ninject) instead of using ConfigurationManager.
-- Changed return value to be an object with Data<T> and RecordsAffected as properties.

04/23/2015 : version 1.0.6 - 1.0.7
-- Added tables to the meta builder.
-- Refactored code to be more object-oriented.
-- Added more XML comments to generated code.

04/21/2015 :version 1.0.0 - 1.0.5
-- Fixed bugs with partial methods and DTO object.
-- Added support for ExecuteScalar().
-- Added partial method hooks.
-- Added support for returning an array of primitives.
-- Added XML comments to generated functions.