EntityFrameworkRuler.Editor 1.3.40

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package EntityFrameworkRuler.Editor --version 1.3.40
NuGet\Install-Package EntityFrameworkRuler.Editor -Version 1.3.40
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="EntityFrameworkRuler.Editor" Version="1.3.40" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EntityFrameworkRuler.Editor --version 1.3.40
#r "nuget: EntityFrameworkRuler.Editor, 1.3.40"
#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 EntityFrameworkRuler.Editor as a Cake Addin
#addin nuget:?package=EntityFrameworkRuler.Editor&version=1.3.40

// Install EntityFrameworkRuler.Editor as a Cake Tool
#tool nuget:?package=EntityFrameworkRuler.Editor&version=1.3.40

Entity Framework Ruler - Editor

This package provides Windows UI components for Entity Framework Ruler. Reference this package directly to use the API, or simply install the Visual Studio Extension to use Entity Framework Ruler right away.


Automate the customization of the EF Core Reverse Engineered model. Features include:

  • Legacy EF6 (EDMX) migration support
  • Class renaming
  • Property renaming (including both primitives and navigations)
  • Type changing (useful for enum mapping)
  • Custom navigations that have no database foreign key, such as adding navigations to views
  • Table splitting (multiple entities using subsets of columns from the same table)
  • Entity inheritance (TPH, TPT, TPC)
  • Auto-naming tables and columns using regex
  • Skipping tables or columns
  • Forcing inclusion of simple many-to-many entities into the model
  • Entity type configuration file splitting

EF Ruler applies customizations from a rule document stored in the project folder. Rules can be initialized with a call to ef dbcontext scaffold, or they can be fully generated from an EDMX such that the scaffolding output will align with the old EF6 EDMX-based model.

"EF Ruler provides a smooth upgrade path from EF6 to EF Core by ensuring that the Reverse Engineered model maps perfectly from the old EDMX structure."


Upgrading from EF6 with EDMX:

  1. Use the command line tool or the VS Extension to generated DB Context rules from an EDMX file.
  2. Reference EntityFrameworkRuler.Design from the EF Core project.
  3. Run the ef dbcontext scaffold command and the design-time service will do the rest.

Initializing DB Context Rules without an EDMX:

  1. Reference EntityFrameworkRuler.Design from the EF Core project.
  2. Run the ef dbcontext scaffold command and a complete rule file will be generated based on the reverse engineered model. The rules can then be modified, and changes applied by re-running the scaffold command.

DB Context Customization and Ongoing DB Maintenance

  1. Edit the rules json by hand, or with the VS Extension installed, right click on the rules file and go to Edit DB Context Rules.

Applying Model Customizations:

  1. Reference NuGet package EntityFrameworkRuler.Design from the EF Core project. This is a design-time reference, meaning it will not appear in the project build output, but will interact with EF Core's reverse engineer process.
  2. Run the ef dbcontext scaffold command and the design-time service will apply all changes as per the json rule file. The rule file itself will also sync up with the reverse engineered model.

Adding or Removing Tables From the Model:

By default, a rule file generated from EDMX limits tables and columns to just what was in the EDMX. That way, an identical model can be generated.

If it's time to add a table or column to the model, adjust the IncludeUnknownTables or IncludeUnknownColumns flags at the relevant level.

If the database schema contains a lot of tables that you don't want to generate entities for, then enabling IncludeUnknownTables is not a good idea. Instead, manually create the table entry in the rule file (using the Editor) and set IncludeUnknownColumns to true. On the next scaffold, the new entity will be generated fully.

You can remove entities from the model by marking the corresponding table (or column) as Not Mapped.


Entity Configuration Splitting:

The ef dbcontext scaffold command does not natively support splitting entity type configurations into separate files. Instead, all type configurations are stored in the same file as the context.

With EF7, EntityFrameworkRuler.Design can split configurations for you.

Just enable "SplitEntityTypeConfigurations" in the rule file (at the root level).


Installation of the Command Line Tool:

> dotnet tool install --global EntityFrameworkRuler --version <the latest version>

See the NuGet page for details.


Command Line Tool Usage:

To generate rules from an EDMX, run the following:

> efruler -g <edmxFilePath> <efCoreProjectBasePath>

If both paths are the same, i.e. the EDMX is in the EF Core project folder, it is acceptable to run:

> efruler -g <projectFolderWithEdmx>

DB context rules will be extracted from the EDMX and saved in the EF Core project folder.

To Apply rules to an already generated EF Core model:

It is strongly recommended to just run ef dbcontext scaffold with the EntityFrameworkRuler.Design library referenced in order to apply customizations. However, if this is not an option, the following command can apply renaming and type mapping to existing entities (using Roslyn). For very large projects, this can take a minute.

> efruler -a <efCoreProjectBasePath>

API Usage

While the command line tool, EntityFrameworkRuler.Design package, and VS Extension are intended to provide all the features necessary to customize the reverse engineered model, without writing any code, the API is available and fully extensible if you need to tailor the process further.

Reference NuGet package EntityFrameworkRuler.Common

To override default services:
serviceCollection
   .AddRuler()
   .AddSingleton<IRuleSerializer, MyBinaryRuleSerializer>()
   .AddTransient<IRulerNamingService, MyCustomNamingService>()
   .AddTransient<IEdmxParser, MyEdmxParser>()    
To generate rules from an EDMX:
var generator = new RuleGenerator(); // or use injected IRuleGenerator instance
var response = generator.GenerateRules(edmxPath);
if (response.Success)
    await generator.SaveRules(response.Rules.First(), projectBasePath);
Apply rules using Roslyn to a project with rules file in the same path:
var applicator = new RuleApplicator(); // or use injected IRuleApplicator instance
var response = await applicator.ApplyRulesInProjectPath(projectBasePath);
Customize rule file name:
var generator = new RuleGenerator();
var response = generator.GenerateRules(edmxPath);
if (response.Success)
    await generator.SaveRules(projectBasePath, dbContextRulesFile: "DbContextRules.json", response.Rules.First());
Handle log activity:
var applicator = new RuleApplicator();
applicator.Log += (sender, message) => Console.WriteLine(message);
var response = await applicator.ApplyRulesInProjectPath(projectBasePath);

This project is under development! Check back often, and leave comments here.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed. 
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in 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.3.40 91 4/4/2024
1.3.9-alpha.0.1 51 4/4/2024
1.3.8 93 3/21/2024
1.3.7 87 3/21/2024
1.3.6 172 12/19/2023
1.3.5 135 11/29/2023
1.3.4 114 11/18/2023
1.2.40 129 10/26/2023
1.2.39 116 10/25/2023
1.2.38 135 10/24/2023
1.2.37 106 10/23/2023
1.2.36 197 7/17/2023
1.2.34-alpha.0.2 72 7/14/2023
1.2.33 152 7/12/2023
1.2.30 174 6/22/2023
1.2.30-alpha.0.1 62 6/21/2023
1.2.29-alpha.0.1 60 6/20/2023
1.2.28 146 6/20/2023
1.2.27 198 4/18/2023
1.2.26 241 3/23/2023
1.2.25 235 3/16/2023
1.2.22 234 3/7/2023
1.2.21 260 3/6/2023
1.2.21-alpha.0.4 75 3/6/2023
1.2.19 259 2/14/2023
1.2.19-alpha.0.4 84 2/14/2023
1.2.17 298 1/31/2023
1.2.16 294 1/27/2023
1.2.15 292 1/27/2023
1.2.14 307 1/26/2023
1.2.13 287 1/25/2023
1.2.10 312 1/25/2023
1.2.9 302 1/25/2023
1.2.8 278 1/25/2023
1.2.7 305 1/24/2023
1.2.6 298 1/24/2023
1.2.5 303 1/24/2023
1.2.4 330 1/18/2023
1.2.3 312 1/17/2023
1.2.3-alpha.0.1 93 1/9/2023
1.2.2 307 1/9/2023
1.2.1-alpha.0.2 101 1/6/2023
1.2.0 312 1/5/2023
1.1.8-alpha.0.16.4 95 1/5/2023
1.1.8-alpha.0.16.2 109 1/5/2023
1.1.8-alpha.0.16.1 109 1/5/2023
1.1.8-alpha.0.16 100 1/5/2023
1.1.8-alpha.0.15 106 1/4/2023
1.1.7 327 12/14/2022
1.1.6-alpha.0.5 90 12/14/2022
1.1.6-alpha.0.4 87 12/13/2022
1.1.6-alpha.0.2 93 12/13/2022
1.1.6-alpha.0.1 83 12/13/2022
1.1.5 302 12/9/2022
1.1.3 299 12/8/2022
1.1.3-alpha.0.2 82 12/8/2022
1.1.3-alpha.0.1 84 12/8/2022
1.1.2 290 12/8/2022
1.1.1 297 12/7/2022
1.1.0 325 12/6/2022
1.0.29-alpha.0.50 92 12/6/2022
1.0.29-alpha.0.48 87 12/6/2022
1.0.29-alpha.0.22 88 11/30/2022
1.0.28 355 11/18/2022
1.0.27 334 11/18/2022
1.0.26 351 11/18/2022
1.0.25 369 11/18/2022
1.0.22 351 11/17/2022
1.0.21 383 11/17/2022
1.0.20 362 11/16/2022
1.0.20-alpha.0.2 89 11/16/2022
1.0.20-alpha.0.1 81 11/16/2022
1.0.19 344 11/16/2022
1.0.18 346 11/16/2022
1.0.17-alpha.0.2 82 11/16/2022
1.0.17-alpha.0.1 90 11/15/2022
1.0.16 378 11/15/2022
1.0.16-alpha.0.2 87 11/15/2022
1.0.14-alpha.0.17 95 11/15/2022
1.0.14-alpha.0.9 93 11/15/2022