T4 工具箱 Linq2Sql

发布于 2024-10-18 01:28:04 字数 562 浏览 0 评论 0原文

我正在尝试使用 t4toolbox 为项目生成 linq2sql 类。已经有很多代码是针对默认 dbml 生成的代码编写的。

在 LinqToSqlEntityClassTemplate.tt 文件中,有没有

/// <para>
/// While MSLinqToSQLGenerator generates field names as property name with an
/// underscore prefix, this method simply converts the property name to camelCase.
/// This is done for consistency with the StyleCop rule SA1306: Variable names
/// must start with a lower-case letter.
/// </para>

办法让它以默认方式(Visual Studio 方式)生成文件,而不是驼峰命名且没有下划线?

由于字段名称差异,t4toolbox 生成的代码会导致 400 多个错误。

I'm trying to use t4toolbox to generate the linq2sql classes for a project. There is already a lot of code written against the default dbml generated code.

In the LinqToSqlEntityClassTemplate.tt file it has

/// <para>
/// While MSLinqToSQLGenerator generates field names as property name with an
/// underscore prefix, this method simply converts the property name to camelCase.
/// This is done for consistency with the StyleCop rule SA1306: Variable names
/// must start with a lower-case letter.
/// </para>

Is there any way to make it generate the files in the default manner (Visual Studio way) instead of camelCasing and not having underscores?

The code generated by t4toolbox causes 400+ errors because of the field name differences.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜雨飘雪 2024-10-25 01:28:04

您可以在项目中复制要修改的 T4 Linq2Sql 模板。您只需创建与 T4Toolbox 中相同的层次结构:在项目的根目录中,添加文件夹 T4Toolbox/LinqToSql 并从 T4Toolbox 安装中复制模板 LinqToSqlEntityClassTemplate.tt到你的项目中。您只需编辑 FieldName 方法即可更改字段的命名。

Visual Studio 中的项目视图

You can copy the T4 Linq2Sql template that you want to modify in you project. You just have to make the same hierarchy as in T4Toolbox: at the root of your project, add a folder T4Toolbox/LinqToSql and copy the template LinqToSqlEntityClassTemplate.tt from your T4Toolbox install into your project. You just have to edit the FieldName methods to change the naming of fields.

project view in Visual Studio

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文