Is there anyway that I can change the naming of the files generated by T4 with Entity Framework Model First
I have tried to change the output extension to this:
<#@ output extension=".Generated.cs"#>
that changed the name of the Model1.cs file to Mode1.Generated.cs but all my entities are still in files named category.cs, Issue.cs etc. What I want is the entity classes still to be named:
Category
Issue
..
but the containing files to followed the naming pattern:
Category.Generated.cs
Issue.Generated.cs
...