0

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.

4

2 回答 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 回答