EntityFrameworkCore.Generator 6.2.0

dotnet tool install --global EntityFrameworkCore.Generator --version 6.2.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 EntityFrameworkCore.Generator --version 6.2.0
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=EntityFrameworkCore.Generator&version=6.2.0
nuke :add-package EntityFrameworkCore.Generator --version 6.2.0

Overview

.NET Core command-line (CLI) tool to generate Entity Framework Core model from an existing database.

Build Project

NuGet Version

Features

  • Entity Framework Core database first model generation
  • Safe regeneration via region replacement
  • Safe Renaming via mapping file parsing
  • Optionally generate read, create and update models from entity
  • Optionally generate validation and object mapper classes

Documentation

Entity Framework Core Generator documentation is available via Read the Docs

Installation

To install EntityFrameworkCore.Generator tool, run the following command in the console

dotnet tool install --global EntityFrameworkCore.Generator

After the tool has been install, the efg command line will be available. Run efg --help for command line options

Generate Command

Entity Framework Core Generator (efg) creates source code files from a database schema. To generate the files with no configuration, run the following

efg generate -c <ConnectionString>

Replace <ConnectionString> with a valid database connection string.

Generation Output

The generate command will create the follow files and directory structure by default. The root directory defaults to the current working directory. Most of the output names and locations can be customized in the configuration file

Data Context Output

The EntityFramework DbContext file will be created in the root directory.

Entities Output

The entities directory will contain the generated source file for entity class representing each table.

Mapping Output

The mapping directory contains a fluent mapping class to map each entity to its table.

Initialize Command

The initialize command is used to create the configuration yaml file and optionally set the connection string. The configuration file has many options to configure the generated output. See the configuration file documentation for more details.

The following command will create an initial generation.yaml configuration file as well as setting a user secret to store the connection string.

efg initialize -c <ConnectionString>

When a generation.yaml configuration file exists, you can run efg generate in the same directory to generate the source using that configuration file.

Regeneration

Entity Framework Core Generator supports safe regeneration via region replacement and source code parsing. A typical workflow for a project requires many database changes and updates. Being able to regenerate the entities and associated files is a huge time saver.

Region Replacement

All the templates output a region on first generation. On future regeneration, only the regions are replaced. This keeps any other changes you've made to the source file.

Example of a generated entity class

public partial class Status
{
    public Status()
    {
        #region Generated Constructor
        Tasks = new HashSet<Task>();
        #endregion
    }

    #region Generated Properties
    public int Id { get; set; }

    public string Name { get; set; }

    public string Description { get; set; }

    public int DisplayOrder { get; set; }

    public bool IsActive { get; set; }

    public DateTimeOffset Created { get; set; }

    public string CreatedBy { get; set; }

    public DateTimeOffset Updated { get; set; }

    public string UpdatedBy { get; set; }

    public Byte[] RowVersion { get; set; }
    #endregion

    #region Generated Relationships
    public virtual ICollection<Task> Tasks { get; set; }
    #endregion
}

When the generate command is re-run, the Generated Constructor, Generated Properties and Generated Relationships regions will be replace with the current output of the template. Any other changes outside those regions will be safe.

Source Parsing

In order to capture and preserve Entity, Property and DbContext renames, the generate command parses any existing mapping and DbContext class to capture how things are named. This allows you to use the full extend of Visual Studio's refactoring tools to rename things as you like. Then, when regenerating, those changes won't be lost.

Database Providers

Entity Framework Core Generator supports the following databases.

  • SQL Server
  • PostgreSQL
  • MySQL
  • Sqlite

The provider can be set via command line or via the configuration file.

Set via command line

efg generate -c <ConnectionString> -p <Provider>

Set in configuration file

database:
  connectionString: 'Data Source=(local);Initial Catalog=Tracker;Integrated Security=True'
  provider: SqlServer

Database Schema

The database schema is loaded from the metadata model factory implementation of IDatabaseModelFactory. Entity Framework Core Generator uses the implemented interface from each of the supported providers similar to how ef dbcontext scaffold works.

View Models

Entity Framework Core Generator supports generating Read, Create and Update view models from an entity. Many projects rely on view models to shape data. The model templates can be used to quickly get the basic view models created. The model templates also support regeneration so any database change can easily be sync'd to the view models.

Change Log

Version 6.0

  • upgrade to .net 8
  • add option to turn off temporal table mapping
  • add rowversion options, ByteArray|Long|ULong
  • add script template merge

Version 5.0

  • add support for navigation property renames
  • update generated query methods to support CancellationToken
  • add support for temporal tables
  • add regex clean support for table and column names

Version 4.5

  • add support for nullable reference types

Version 4.0

  • upgrade projects to .net 6

Version 3.1

  • Breaking change to generated mapping constants
    • TableName is now Table.Name
    • TableSchema is now Table.Schema
    • Column{Name} is now Columns.{Name}
  • add additional automapper for read model to update model

Version 3.0

  • Add Table.Name and Table.Schema variable support in yaml configuration.
  • Add entity name option to control the name of the entity. Leave blank to use previous generate logic. Set under the entity → name yaml settings.
  • Add exclude table support. Set under the database → exclude yaml settings.
  • Include and Exclude expression can now be exact or regex. When exact, will be direct string match. When regex, will use regular expression to match. Default is regex for legacy support.

Version 2.5

  • Add external script template support
  • Misc bug fixes

Version 2.0

  • Add support for Entity Framework Core 3.0
  • Add provider support for PostgreSQL, MySQL and Sqlite
  • Add View support

Version 1.1

  • Add alias to commands, can use efg gen for efg generate and efg init for efg initialize
  • Fix bug where base class for Entity was placed in wrong location
  • Fix misc sorting issue that caused needless source control changes
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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
6.2.0 772 3/23/2024
6.1.0 900 2/26/2024
6.0.2 704 2/14/2024
6.0.1 1,252 1/2/2024
6.0.0 942 1/1/2024
5.2.0 2,822 8/9/2023
5.1.1 1,602 7/29/2023
5.0.935 1,981 6/10/2023
4.5.838 3,226 10/14/2022
4.5.726 3,610 3/6/2022
4.0.682 2,889 12/11/2021
3.1.0.652 1,709 10/21/2021
3.1.0.612 3,957 7/28/2021
3.1.0.599 1,775 7/12/2021
3.1.0.562 2,046 6/3/2021
3.1.0.488 2,528 2/15/2021
3.1.0.387 3,812 9/13/2020
3.1.0.372 1,821 8/28/2020
3.1.0.346 2,361 7/19/2020
3.1.0.331 2,344 6/27/2020
3.1.0.329 1,918 6/25/2020
3.1.0.328 1,759 6/25/2020
3.1.0.285 2,187 5/14/2020
3.0.0.258 1,965 4/19/2020
2.5.0.253 2,101 4/11/2020
2.5.0.232 1,931 3/17/2020
2.5.0.231 1,737 3/17/2020
2.5.0.226 1,840 2/24/2020
2.5.0.182 1,957 1/23/2020
2.5.0.153 2,147 12/20/2019
2.5.0.152 2,084 12/20/2019
2.5.0.121 1,987 12/3/2019
2.5.0.114 1,834 11/20/2019
2.5.0.59 2,358 10/9/2019
2.0.0.55 2,065 9/24/2019
1.1.0.52 2,198 9/17/2019
1.1.0.49 2,696 5/18/2019
1.0.0.48 1,776 5/16/2019
1.0.0.45 2,052 4/22/2019
1.0.0.41 2,114 3/29/2019
1.0.0.38 1,763 3/20/2019
1.0.0.36 2,227 2/27/2019
1.0.0.34 2,094 2/19/2019
1.0.0.28 2,243 12/6/2018
1.0.0.27 1,958 11/27/2018
1.0.0.26 2,269 11/26/2018
1.0.0.25 2,122 11/26/2018
1.0.0.24 2,094 11/26/2018
1.0.0.22 1,987 11/19/2018
1.0.0.17 2,193 11/14/2018
1.0.0.15 2,092 11/14/2018
1.0.0.14 2,091 11/14/2018
1.0.0.2 2,205 10/24/2018