从 T4 文件手动调用 MSLinqToSQLGenerator 自定义工具
我正在创建一个 *.tt 文件来自动执行解决方案中的某些生成过程,但我一直不知道如何手动调用 LINQ 使用的“MSLinqToSQLGenerator”自定义工具。有人可以告诉我这是如何完成的吗?
I am creating a *.tt file to automate some generation processes within my solution and am stuck at how to manually invoke the 'MSLinqToSQLGenerator' custom tool that LINQ uses. Can someone show me how this is done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否考虑过用产生相同输出的 T4 替换默认自定义工具(内部使用 T4)的替代方案?
当我需要插入附加功能时,我使用这个外部模板来完成此操作。
LINQ to SQL 生成器的 MSDN 文档
单个文件的两个自定义工具?
Have you considered the alternative of replacing the default custom tool (that uses T4 internally) with a T4 that produces the same output?
I did it with this external template when I needed to plug in additional functionality.
MSDN Documentation for the LINQ to SQL Generator
Two Custom tool s for a single file?