When you do database-first or model-first (EDMX) in EntityFramework, I believe Visual Studio generates code off T4 templates, I would like to create a new out of the default and throw some customization in but I can't find their location anywhere.
问问题
1168 次
2 回答
1
在 VS 解决方案资源管理器中展开 .edmx 文件以直接访问和编辑。要制作备份副本,在使用 Windows 资源管理器浏览时,您应该在您放置 .edmx 文件的同一项目文件夹或其他文件夹中找到它们。
于 2013-05-01T22:13:38.207 回答
0
Visual Studio 2010,不使用 T4 生成模型的代码隐藏,它使用该EntityModelCodeGenerator
工具。
由于EntityModelCodeGenerator
无法修改工具,Microsoft 提供了创建ADO.NET EntityObject Generator
将生成 T4 基本模板的功能,该模板与EntityModelCodeGenerator
生成的内容等效。
于 2013-05-02T11:10:00.987 回答