实体框架文件不嵌套在EDMX文件下

时间:2015-05-21 15:54:01

标签: c# asp.net-mvc entity-framework t4 edmx

我知道这是Here的重复,但我也有一个问题,即TT文件没有嵌套在edmx文件下。来自重复问题的解决方案只是将实体类置于TT下,而不是edmx下的TT。提前谢谢。

1 个答案:

答案 0 :(得分:4)

修改.csproj并确保"DependentUpon>Model.edmx</DependentUpon>"下有<Content Include="Model.tt">。如果找不到,请添加DependentUpon标记并保存.csproj文件。

<Content Include="Model.tt">
  <Generator>TextTemplatingFileGenerator</Generator>
  <DependentUpon>Model.edmx</DependentUpon>
  <LastGenOutput>Model.cs</LastGenOutput>
</Content>