Found 9 packages
More Details in Github Link : [Mini Dapper's POCO Class Generator](https://github.com/shps951023/PocoClassGenerator)
A simple and sane data generator for populating objects that supports different locales. A delightful port of the famed faker.js and inspired by FluentValidation. Use Bogus to create UIs with fake data or seed databases. Get started by using Faker class or a DataSet directly.
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
Repository Generator will generate an entire repository structure for you. All you need to supply a namespace which contains all your Entity Framework models and the RepositoryGenerator.tt will generate repositories for all your models, it will generate a generic repository providing you with basic functionality out of the box. A Unit of Work class will also be generated.
An indiscriminate data generator that will generate random data for all properties in a given class based on the property's type vs. its name. Examples can be found on the wiki: https://github.com/Schandlich/Fibber/wiki
Generate c# classes from worksheet headers inside an excel workbook (.xls). Useful for data conversion projects.
A lightweight utility that converts C# POCO classes into .proto message definitions for gRPC, automatically. Supports simple types, lists, arrays, and nullable types, with snake_case field naming. Designed to be simple, clean, and dependency-free.
C# code generator to generate Models (POCO’s) for Umbraco Document Types using T4 templates. These Models can be populated with data from Umbraco nodes via the generated ModelFactory class. The major Umbraco Data Types are supported including some uComponent Data Types like DataType Grid. Ideal when Razor or Mustache is used as view engine.