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 Mode11.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
...
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Setting output directive will only configure the main file generated by the template. T4 templates with default custom tool generates only single file. These EF templates handles multiple file generation by their own so you must visit the T4 code and search for snippets like:

// Emit Entity Types
foreach (EntityType entity in ItemCollection.GetItems<EntityType>().OrderBy(e => e.Name))
{
    fileManager.StartNewFile(entity.Name + ".cs");
    ...

And

foreach (ComplexType complex in ItemCollection.GetItems<ComplexType>().OrderBy(e => e.Name))
{
    fileManager.StartNewFile(complex.Name + ".cs");

Modify names of started files as you need.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.