EntityFrameworkRuler.Editor 1.0.21

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package EntityFrameworkRuler.Editor --version 1.0.21
                    
NuGet\Install-Package EntityFrameworkRuler.Editor -Version 1.0.21
                    
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.0.21" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EntityFrameworkRuler.Editor" Version="1.0.21" />
                    
Directory.Packages.props
<PackageReference Include="EntityFrameworkRuler.Editor" />
                    
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 EntityFrameworkRuler.Editor --version 1.0.21
                    
#r "nuget: EntityFrameworkRuler.Editor, 1.0.21"
                    
#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.
#addin nuget:?package=EntityFrameworkRuler.Editor&version=1.0.21
                    
Install EntityFrameworkRuler.Editor as a Cake Addin
#tool nuget:?package=EntityFrameworkRuler.Editor&version=1.0.21
                    
Install EntityFrameworkRuler.Editor as a Cake Tool

Entity Framework Ruler - Editor

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

  • Class renaming
  • Property renaming (including both primitives and navigations)
  • Type changing (useful for enum mapping)
  • Skipping non-mapped columns.
  • Forcing inclusion of simple many-to-many entities into the model.

EF Ruler applies customizations from a rule document stored in the project folder. Rules can be fully generated from an EDMX (from old Entity Framework) 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 couldn't be simpler:

  1. The the CLI tool to analyze the EDMX for all customizations and generate the rules.
  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.

Done.

Applying Model Customizations:

There are two options for applying the rules to a DB context model:

  1. Simply reference EntityFrameworkRuler.Design from the EF Core project. Proceed with CLI scaffolding (as mentioned above). EntityFrameworkRuler.Design is a Design-Time reference package, meaning EF Core can use it during the scaffolding process to customize the generated model, but the assembly will NOT appear in the project build output. It can't get more automated than this.
  2. Use the CLI tool to apply changes to an already generated EF Core model. This approach uses Roslyn to apply code changes. The code analysis is reliable, but for very large models this option can take a minute.

Road Map:

  • EF Power Tools built-in support.
  • Editor library to manage the rules and edit the EF Core model structure with a UI.

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

Installation of the CLI tool:

There are 2 ways to use the CLI tool:

  1. Command line:
    > dotnet tool install --global EntityFrameworkRuler 
    
  2. API:
    > dotnet add package EntityFrameworkRuler   
    PM> NuGet\Install-Package EntityFrameworkRuler
    

See the NuGet page for details.

CLI 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>

Structure 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:

> efruler -a <efCoreProjectBasePath>

This assumes that you have executed the ef dbcontext scaffold command to generate the model previously.

API Usage

To generate rules from an EDMX, use the following class:

EntityFrameworkRuler.Generator.RuleGenerator

To Apply rules to an EF Core model, use the following class:

EntityFrameworkRuler.Applicator.RuleApplicator

Examples

Generate and save rules:
var generator = new RuleGenerator(edmxPath);  
var rules = generator.TryGenerateRules();  
await generator.TrySaveRules(projectBasePath);
Apply rules already in project path:
var applicator = new RuleApplicator(projectBasePath);  
var response = await applicator.ApplyRulesInProjectPath();
More control over which rules are applied:
var applicator = new RuleApplicator(projectBasePath);  
var loadResponse = await applicator.LoadRulesInProjectPath();  
var navRules = loadResponse.Rules.OfType<NavigationNamingRules>().First();
var applyResponse = await applicator.ApplyRules(enumRules);
Customize rule file names:
var generator = new RuleGenerator(edmxPath);  
var rules = generator.TryGenerateRules();  
await generator.TrySaveRules(projectBasePath,  
    new RuleFileNameOptions() {  
        PrimitiveRulesFile = null, // null will skip this file
        NavigationRulesFile = "NavRules.json" 
  }  
);
Handle log activity:
var applicator = new RuleApplicator(projectBasePath);  
applicator.OnLog += (sender, message) => Console.WriteLine(message);
var response = await applicator.ApplyRulesInProjectPath();
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.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0-windows7.0

    • 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
9.0.2 111 11/29/2024
9.0.1 107 11/21/2024
9.0.1-alpha.0.2 56 11/21/2024
1.3.48 113 9/28/2024
1.3.46 143 8/27/2024
1.3.46-alpha.0.1 60 8/27/2024
1.3.45 107 5/2/2024
1.3.44 84 5/2/2024
1.3.43 79 5/2/2024
1.3.42 95 5/2/2024
1.3.40 137 4/4/2024
1.3.9-alpha.0.1 74 4/4/2024
1.3.8 138 3/21/2024
1.3.7 126 3/21/2024
1.3.6 218 12/19/2023
1.3.5 171 11/29/2023
1.3.4 150 11/18/2023
1.2.40 170 10/26/2023
1.2.39 157 10/25/2023
1.2.38 204 10/24/2023
1.2.37 137 10/23/2023
1.2.36 230 7/17/2023
1.2.34-alpha.0.2 91 7/14/2023
1.2.33 188 7/12/2023
1.2.30 213 6/22/2023
1.2.30-alpha.0.1 79 6/21/2023
1.2.29-alpha.0.1 78 6/20/2023
1.2.28 189 6/20/2023
1.2.27 242 4/18/2023
1.2.26 282 3/23/2023
1.2.25 278 3/16/2023
1.2.22 273 3/7/2023
1.2.21 300 3/6/2023
1.2.21-alpha.0.4 98 3/6/2023
1.2.19 304 2/14/2023
1.2.19-alpha.0.4 106 2/14/2023
1.2.17 350 1/31/2023
1.2.16 345 1/27/2023
1.2.15 340 1/27/2023
1.2.14 357 1/26/2023
1.2.13 329 1/25/2023
1.2.10 358 1/25/2023
1.2.9 348 1/25/2023
1.2.8 318 1/25/2023
1.2.7 344 1/24/2023
1.2.6 343 1/24/2023
1.2.5 346 1/24/2023
1.2.4 376 1/18/2023
1.2.3 362 1/17/2023
1.2.3-alpha.0.1 125 1/9/2023
1.2.2 347 1/9/2023
1.2.1-alpha.0.2 126 1/6/2023
1.2.0 353 1/5/2023
1.1.8-alpha.0.16.4 127 1/5/2023
1.1.8-alpha.0.16.2 137 1/5/2023
1.1.8-alpha.0.16.1 141 1/5/2023
1.1.8-alpha.0.16 125 1/5/2023
1.1.8-alpha.0.15 132 1/4/2023
1.1.7 370 12/14/2022
1.1.6-alpha.0.5 115 12/14/2022
1.1.6-alpha.0.4 117 12/13/2022
1.1.6-alpha.0.2 127 12/13/2022
1.1.6-alpha.0.1 115 12/13/2022
1.1.5 342 12/9/2022
1.1.3 380 12/8/2022
1.1.3-alpha.0.2 107 12/8/2022
1.1.3-alpha.0.1 110 12/8/2022
1.1.2 336 12/8/2022
1.1.1 344 12/7/2022
1.1.0 367 12/6/2022
1.0.29-alpha.0.50 118 12/6/2022
1.0.29-alpha.0.48 112 12/6/2022
1.0.29-alpha.0.22 114 11/30/2022
1.0.28 399 11/18/2022
1.0.27 378 11/18/2022
1.0.26 393 11/18/2022
1.0.25 405 11/18/2022
1.0.22 398 11/17/2022
1.0.21 414 11/17/2022
1.0.20 402 11/16/2022
1.0.20-alpha.0.2 114 11/16/2022
1.0.20-alpha.0.1 112 11/16/2022
1.0.19 389 11/16/2022
1.0.18 395 11/16/2022
1.0.17-alpha.0.2 113 11/16/2022
1.0.17-alpha.0.1 115 11/15/2022
1.0.16 422 11/15/2022
1.0.16-alpha.0.2 118 11/15/2022
1.0.14-alpha.0.17 120 11/15/2022
1.0.14-alpha.0.9 116 11/15/2022