EntityFrameworkCore.Scaffolding.Handlebars
1.4.0
See the version list below for details.
dotnet add package EntityFrameworkCore.Scaffolding.Handlebars --version 1.4.0
NuGet\Install-Package EntityFrameworkCore.Scaffolding.Handlebars -Version 1.4.0
<PackageReference Include="EntityFrameworkCore.Scaffolding.Handlebars" Version="1.4.0" />
paket add EntityFrameworkCore.Scaffolding.Handlebars --version 1.4.0
#r "nuget: EntityFrameworkCore.Scaffolding.Handlebars, 1.4.0"
// Install EntityFrameworkCore.Scaffolding.Handlebars as a Cake Addin #addin nuget:?package=EntityFrameworkCore.Scaffolding.Handlebars&version=1.4.0 // Install EntityFrameworkCore.Scaffolding.Handlebars as a Cake Tool #tool nuget:?package=EntityFrameworkCore.Scaffolding.Handlebars&version=1.4.0
Entity Framework Core Scaffolding with Handlebars
Scaffold EF Core models using Handlebars templates.
- Uses Handlebars.NET to compile Handlebars templates when generating models with the Entity Framework Core scaffolding tools.
Prerequisites
- Visual Studio 2017 15.8 or greater.
- The .NET Core 2.1 SDK (version 2.1.3 or greater).
Database Setup
- Use SQL Server Management Studio to connect to SQL Server
- The easiest is to use LocalDb, which is installed with Visual Studio.
Connect to:(localdb)\MsSqlLocalDb
. - Create a new database named NorthwindSlim.
- Download the data file from http://bit.ly/northwindslim.
- Unzip NorthwindSlim.sql and run the script to create tables and populate them with data.
- The easiest is to use LocalDb, which is installed with Visual Studio.
Usage
Create a new .NET Core class library.
- If necessary, edit the csproj file to update the TargetFramework to 2.1.
Note: Using the EF Core toolchain with a .NET Standard class library is currently not supported. Instead, you can add a .NET Standard class library to the same solution as the .NET Core library, then add existing items and select Add As Link to include entity classes.
Add EF Core SQL Server and Tools NuGet packages.
- Open the Package Manager Console, select the default project and enter:
Install-Package Microsoft.EntityFrameworkCore.SqlServer
- If needed update EF Core to version 2.1.
- Open the Package Manager Console, select the default project and enter:
Add the EntityFrameworkCore.Scaffolding.Handlebars NuGet package:
Install-Package EntityFrameworkCore.Scaffolding.Handlebars
Remove Class1.cs and add a ScaffoldingDesignTimeServices class.
- Implement
IDesignTimeServices
by adding aConfigureDesignTimeServices
method that callsservices.AddHandlebarsScaffolding
. - You can optionally pass a
ReverseEngineerOptions
enum to indicate if you wish to generate only entity types, only a DbContext class, or both (which is the default).
public class ScaffoldingDesignTimeServices : IDesignTimeServices { public void ConfigureDesignTimeServices(IServiceCollection services) { var options = ReverseEngineerOptions.DbContextAndEntities; services.AddHandlebarsScaffolding(options); } }
- Implement
Open a command prompt at the project level and use the EF .NET Core CLI tools to reverse engineer a context and models from an existing database.
- Get help on dotnet-ef-dbcontext-scaffold at the command line:
dotnet ef dbcontext scaffold -h
- Execute the following command to reverse engineer classes from the NorthwindSlim database:
dotnet ef dbcontext scaffold "Data Source=(localdb)\MSSQLLocalDB; Initial Catalog=NorthwindSlim; Integrated Security=True" Microsoft.EntityFrameworkCore.SqlServer -o Models -c NorthwindSlimContext -f --context-dir Contexts
- You should see context and/or entity classes appear in the Models folder of the project.
- You will also see a CodeTemplates folder appear containing Handlebars templates for customizing generation of context and entity type classes.
- Add
-d
to the command to use data annotations. You will need to add the System.ComponentModel.Annotations package to a .NET Standard library containing linked entity classes.
- Get help on dotnet-ef-dbcontext-scaffold at the command line:
You may edit any of the template files which appear under the CodeTemplates folder.
- For now you can just add some comments, but you may wish to customize the templates in other ways, for example, by inheriting entities from a base class or implementing specific interfaces.
- When you run the dotnet-ef-dbcontext-scaffold command again, you will see your updated reflected in the generated classes.
Handlebars Helpers
You can register Handlebars helpers in the ScaffoldingDesignTimeServices
where setup takes place.
- Create a named tuple as shown with
myHelper
below. - Pass the tuple to the
AddHandlebarsScaffolding
extension method. - You may register as many helpers as you wish.
public class ScaffoldingDesignTimeServices : IDesignTimeServices
{
public void ConfigureDesignTimeServices(IServiceCollection services)
{
// Generate both context and entitites
var options = ReverseEngineerOptions.DbContextAndEntities;
// Register Handlebars helper
var myHelper = (helperName: "my-helper", helperFunction: (Action<TextWriter, object, object[]>) MyHbsHelper);
// Add Handlebars scaffolding templates
services.AddHandlebarsScaffolding(options);
// Register Handlebars helper
services.AddHandlebarsHelpers(myHelper);
}
// Sample Handlebars helper
void MyHbsHelper(TextWriter writer, object context, object[] parameters)
{
writer.Write("// My Handlebars Helper");
}
}
- To use Handlebars helper defined above, add the following to any of the .hbs files within the CodeTemplates folder:
{{my-helper}}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Handlebars.Net (>= 1.9.4)
- Microsoft.EntityFrameworkCore.Design (>= 2.1.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on EntityFrameworkCore.Scaffolding.Handlebars:
Package | Downloads |
---|---|
TrueSight
Package Description |
|
TrueSight.Lite
Package Description |
|
ODS_Fantasy
Package Description |
|
Neyland
Package Description |
|
TrueSight.Lite.Net5
Package Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on EntityFrameworkCore.Scaffolding.Handlebars:
Repository | Stars |
---|---|
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI
|
Version | Downloads | Last updated |
---|---|---|
8.0.0 | 126,407 | 1/27/2024 |
8.0.0-beta2 | 628 | 12/30/2023 |
8.0.0-beta1 | 1,679 | 11/23/2023 |
7.0.0 | 95,997 | 6/12/2023 |
7.0.0-beta1 | 19,308 | 11/20/2022 |
6.0.3 | 395,856 | 1/22/2022 |
6.0.2 | 10,865 | 12/23/2021 |
6.0.1 | 1,430 | 12/21/2021 |
6.0.0 | 6,752 | 12/15/2021 |
6.0.0-preview5 | 207 | 12/15/2021 |
6.0.0-preview4 | 288 | 12/5/2021 |
6.0.0-preview3 | 4,770 | 11/30/2021 |
6.0.0-preview2 | 3,608 | 11/25/2021 |
6.0.0-preview1 | 3,389 | 11/25/2021 |
5.0.5-preview1 | 8,049 | 9/25/2021 |
5.0.4 | 73,798 | 9/23/2021 |
5.0.3 | 12,992 | 9/15/2021 |
5.0.2 | 89,242 | 2/19/2021 |
5.0.1 | 21,604 | 12/5/2020 |
5.0.0 | 2,336 | 11/15/2020 |
5.0.0-rc.2 | 710 | 10/18/2020 |
3.8.5 | 28,129 | 11/7/2020 |
3.8.4 | 14,951 | 9/28/2020 |
3.8.3 | 96,451 | 8/18/2020 |
3.8.2 | 3,547 | 7/21/2020 |
3.8.1 | 7,855 | 7/8/2020 |
3.7.0 | 44,193 | 5/1/2020 |
3.6.0 | 21,614 | 1/6/2020 |
3.5.1 | 2,279 | 12/15/2019 |
3.5.0 | 6,210 | 10/18/2019 |
3.0.0 | 1,211 | 10/14/2019 |
3.0.0-preview8 | 463 | 8/26/2019 |
2.1.1 | 36,095 | 8/5/2019 |
2.1.0 | 1,364 | 7/19/2019 |
2.0.0 | 5,912 | 6/25/2019 |
1.7.2 | 119,787 | 1/6/2019 |
1.7.1 | 978 | 1/5/2019 |
1.7.0 | 764 | 1/3/2019 |
1.6.0 | 1,405 | 12/17/2018 |
1.5.1 | 25,558 | 7/7/2018 |
1.5.0 | 1,233 | 6/22/2018 |
1.4.1 | 1,173 | 7/7/2018 |
1.4.0 | 1,052 | 6/23/2018 |
1.1.1 | 1,097 | 6/19/2018 |
1.1.0 | 1,181 | 6/3/2018 |
1.0.0 | 1,206 | 5/30/2018 |
1.0.0-rc3 | 1,075 | 5/26/2018 |
1.0.0-rc2 | 849 | 5/26/2018 |
1.0.0-rc | 838 | 5/24/2018 |
1.0.0-beta | 2,562 | 10/25/2017 |