Bring2mind.CodeGen.Cli 0.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global Bring2mind.CodeGen.Cli --version 0.1.0
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Bring2mind.CodeGen.Cli --version 0.1.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Bring2mind.CodeGen.Cli&version=0.1.0
nuke :add-package Bring2mind.CodeGen.Cli --version 0.1.0

Code generation

This tool uses Razor templating to generate code from a (SQL Server) database model. This is useful for scaffolding out your domain model, your services layer and/or other parts of your application that should always mirror your data model.

DNN Platform

The DNN Platform is a web application framework built on the .net framework. If you know how to create modules, it is a very powerful tool to build advanced web applications. The default templates supplied with this tool are intended to help module developers keep their code synchronized with their data model. The default templates use the PetaPoco patterns used by DNN (sometimes referred to as DAL2).

Opinionated

This project was borne out of frustration with limitations of similar tools and EF. And as a result it is highly opinionated. Below is a list of assumptions and how these work in the tool.

Module Qualifier

In the settings you supply a ModuleObjectQualifier. This is a string which should end with an underscore and precedes all DB items that you've created for your module. Tables, Views, Stored Procedures.

Widget vs Widgets

The tool assumes your tables use the naming convention of plural for the table. So Widgets, NOT Widget. This will automatically generate objects called "Widget" for your code.

Tables and Views

The tool assumes that if there is a View that is called "vw_MyModule_Widgets" and a table called "MyModule_Widgets" that these two are related. In fact it will assume that the view columns are a superset of the table columns. In the default templates this will generate a "WidgetBase" class tied to the table and a "Widget" class tied to the view. This encourages using the view for data retrieval and the table for data addition and updating.

Installation

Install this tool as a dotnet cli tool as follows:

dotnet tool install --global Bring2mind.CodeGen.Cli

You should then be able to run the tool in the directory of your project

codegen

Configuration

Use the .codegen.json file generated by the tool to fill in the following:

Parameter Description
Template A full path to the first template to run. Note that templates can call other templates, so you only need one as an entry point
OutputDirectory Relative path to where you wish the generator to write files
OrgName Organization name
ModuleName Module name
RootNameSpace Root namespace for your code
SiteConfig Full path to the web.config of the site you're using to develop on. If specified the tool will use this to parse the connection string, db owner and object qualifier. If not specified use those parameters below
ConnectionString Connectionstring of the SQL server on which you model your data
ObjectQualifier ObjectQualifier used in that database if any. Leave blank if not used.
DatabaseOwner Database owner of the schema. Normally dbo.
ModuleObjectQualifier Module's object qualifier (see above) that helps the tool to parse out which objects to use for code generation
EnumValues If some columns need to be mapped to Enums, you can specify that here. The code generator can insert the right type in code.

Templates

You can find a collection of templates in a zip file with each release of this tool on the Github page.

Building This Project

If you wish to fork this project and work on it, compile it using

dotnet pack

and install it on your dev machine using

dotnet tool install --global --add-source ./nupkg Bring2mind.CodeGen.Cli

Uninstall

In the unlikely event you'll want to uninstall this tool, use the following:

dotnet tool uninstall -g Bring2mind.CodeGen.Cli
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.2.7 47 5/15/2024
0.2.6 138 2/20/2024
0.2.5 119 2/17/2024
0.2.4 544 10/18/2022
0.2.3 475 6/17/2022
0.2.2 526 6/2/2022
0.2.1 508 5/13/2022
0.2.0 623 1/29/2022
0.1.0 596 1/28/2022
0.0.1 597 5/13/2022