Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am modifying the "ADO.NET POCO Entity Generator" template to create my own POCO classes. My .tt file for my Model is called Model1.tt. When you expand Model1.tt you will see a file called Model1.cs, which contains some auto-generated "Fixup" code:

public class FixupCollection<T> : ObservableCollection<T>
{
    //Auto-generated code here
}

I don't need this Model1.cs file. Is it possible to modify the Model1.tt file so that it won't create the Model1.cs file at all?

share|improve this question

3 Answers

Not sure how to completely remove the file, but to remove the FixupCollection class you can just remove or comment out WriteCustomObservableCollection();. Note that you will have to modify the part of the template that generates the FixupCollections for your POCO navigation properties too.

share|improve this answer
Yes - this is what I ended up doing. – thd Nov 18 '10 at 19:35

Files are created using the EntityFrameworkTemplateFileManager. On line #26 of tt file for types's you'll see it being initialized:

EntityFrameworkTemplateFileManager fileManager = EntityFrameworkTemplateFileManager.Create(this);

You'll see everywhere it's used just for searching for "fileManager" in the file.

share|improve this answer
If you comment out fileManager throughout the Model1.tt file, then you will get a few errors and you won't get any entity generated. – thd Nov 18 '10 at 19:34
I don't get a Model1.cs file generated when i run the template - only files that get generated are for the "real" entities. I'm guessing this file is getting generated due to a customization you made in the template. – Steve Michelotti Nov 18 '10 at 20:24
Hmmm...I started over again. 1) I added ADO.NET Entity Data Model (Code Generation Strategy = None); 2) added "Add Code Generation Item..."; 3) added "ADO.NET POCO Entity Generator"; 4) commented out 'fileManager' in Model1.tt; 5) deleted all .cs files under Model1.tt then ran the Model1.tt template. Result: only Model1.cs is generated. No .cs files for each entity in my model are generated. However, Model1.cs contains the definitions for the entities. – thd Nov 18 '10 at 21:20

Had the same issue - one solution is to utilize the class itself as a base class, etc. Not exactly deleting it, I know, but I couldn't see a way to do it easily.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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