实体框架核心-自定义脚手架 [英] Entity Framework Core - Customise Scaffolding

查看:93
本文介绍了实体框架核心-自定义脚手架的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Entity Framework 6中,我们可以通过运行来添加脚手架使用的T4模板

In Entity Framework 6 we can add the T4 templates the scaffolding uses by running

Install-Package EntityFramework.CodeTemplates.CSharp

但是在Entity Framework Core中,脚手架系统似乎没有使用T4模板,看起来也不像可以定制脚手架。它似乎全部在c#类中。

But in Entity Framework Core the scaffolding system does not appear to use T4 templates, nor does it seem like the scaffolding can be customised. It seems to be all in c# classes eg.

https://github.com/aspnet/EntityFramework/blob/a508f37cf5a0246e9b92d05429153c3d817ad5ec/src/Microsoft.EntityFrameworkCore.Tools.Core/Scaffolding/Internal/EntityTypeWriter.cs

有什么方法可以自定义脚手架的输出?

Is there any way to customise the output from the scaffold?

推荐答案

有是一个特殊的,尚待记录的钩子,用于覆盖设计时服务:

There is a special, yet-to-be-documented hook to override design-time services:

class Startup
{
    public static void ConfigureDesignTimeServices(IServiceCollection services)
        => services.AddSingleton<EntityTypeWriter, MyEntityTypeWriter>();
}

然后实现您的自定义生成器。

Then implement your custom generator.

class MyEntityTypeWriter : EntityTypeWriter
{
    public EntityTypeWriter(CSharpUtilities cSharpUtilities)
        : base(cSharpUtilities)
    {
    }

    // TODO: Override with custom implementation
}

更新:请参见 Yehuda Goldenberg 的答案,以了解另一种方法EF Core 1.0.2 +。

Update: See Yehuda Goldenberg's answer for another way to do this in EF Core 1.0.2+.

这篇关于实体框架核心-自定义脚手架的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆