Dapper.FastCrud.ModelGenerator 2.3.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dapper.FastCrud.ModelGenerator --version 2.3.2
                    
NuGet\Install-Package Dapper.FastCrud.ModelGenerator -Version 2.3.2
                    
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="Dapper.FastCrud.ModelGenerator" Version="2.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dapper.FastCrud.ModelGenerator" Version="2.3.2" />
                    
Directory.Packages.props
<PackageReference Include="Dapper.FastCrud.ModelGenerator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Dapper.FastCrud.ModelGenerator --version 2.3.2
                    
#r "nuget: Dapper.FastCrud.ModelGenerator, 2.3.2"
                    
#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.
#:package Dapper.FastCrud.ModelGenerator@2.3.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Dapper.FastCrud.ModelGenerator&version=2.3.2
                    
Install as a Cake Addin
#tool nuget:?package=Dapper.FastCrud.ModelGenerator&version=2.3.2
                    
Install as a Cake Tool

Entity generation for Dapper.FastCrud from a LocalDb or an MsSqlServer database.
Entity domain partitioning can be achieved via separate template configurations. The installation package provides a sample config file, SampleModelGeneratorConfig.tt.
Do not modify GenericModelGenerator.tt, as future upgrades via NuGet will fail to update this file.

More details are available on the project site.

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
3.3.1 2,199 6/3/2024
3.2.3 207 5/31/2024
3.0.44 10,011 2/21/2022
2.4.1 59,558 10/27/2016
2.4.0 2,920 9/21/2016
2.3.2 4,733 1/5/2016
2.1.0 3,456 9/18/2015
2.0.0 3,249 6/1/2015

2.3.2:
- CRLF fixed in the model generator

2.3.1:
- BREAKING CHANGE: the logic for marking properties with DatabaseGeneratedAttribute has changed. Please check the docs.
- BREAKING CHANGE: a proprietary DatabaseGeneratedDefaultValueAttribute was introduced, however this must be enabled in the template. Note that this is a Dapper.FastCrud library feature only.
- BREAKING CHANGE: primary keys having their values generated via newid() are marked with DatabaseGenerated(DatabaseGeneratedOption.Identity) in case the generation of the proprietary attribute is turned off.
- compatible with any 2.3.x version of Dapper.FastCrud.

2.1.0:
- compatible with any 2.0.x, 2.1.x or 2.2.x version of Dapper.FastCrud.