Digitrish.PocoFromDB 1.0.0.3

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

// Install Digitrish.PocoFromDB as a Cake Tool
#tool nuget:?package=Digitrish.PocoFromDB&version=1.0.0.3

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.3 1,831 9/25/2013
1.0.0.2 1,180 9/25/2013
1.0.0.1 1,112 9/25/2013
1.0.0 1,191 9/22/2013

1.0.0.3
- Bug fixes.

1.0.0.2
- Bug fixes.
         
1.0.0.1
- Bug fixes
- Renamed All to Get and convert it to method.
- Remove Entity word from mapping/config class and repository class
           
1.0.0.0
- Initial release.