FM.Data.CodeGenerator 1.0.0.9

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

// Install FM.Data.CodeGenerator as a Cake Tool
#tool nuget:?package=FM.Data.CodeGenerator&version=1.0.0.9

This is a Scaffold extension to generate POCO class, Mapping class, Repository pattern class and DbContext. Very helpful in database-first approach without needing .edmx.
         Usage: On Package Manager Console type the following command:
         Scaffold PocoFromDB {your-connection-string} {contextName} {table name or your select query} {entityname} {providerName}
         Ex:
         Scaffold PocoFromDB "Data Source=C:\DB\Foo.sdf" FooContext Customer CustomerEntity "System.Data.SqlServerCe.4.0"
         Scaffold PocoFromDB "Data Source=C:\DB\Foo.sdf" FooContext "SELECT FirstName, LastName FROM Customer" CustomerEntity "System.Data.SqlServerCe.4.0"          
         Special Note:
         If your connection string contains special character/reserve for PowerShell such as '$', you need escape it with '`' character. Example: pa$$word01 will be pa`$`$word01

There are no supported framework assets in this 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
1.0.0.9 2,925 3/23/2013
1.0.0.8 5,770 3/23/2013
1.0.0.7 5,158 3/23/2013
1.0.0.6 2,276 12/17/2012
1.0.0.5 5,763 12/17/2012
1.0.0.4 2,407 12/16/2012
1.0.0.3 2,172 12/16/2012
1.0.0.1 1,646 12/15/2012

Intial Release