I've just started using SubSonic 3 and I'm using the ActiveRecord T4 template.

If I make a change in the database (add a column to a table for example), what is the correct method for forcing the code produced by the T4 templates to be re-generated?

At the moment I'm just deleting the ActiveRecord folder in my project then dragging the template folder back in again. There must be a better way?

Update:

In addition to Skinniest Man's answer below, I also noticed an icon at the top of the Visual Studio 2008 Solution Explorer called "Transform All Templates". This will generate code from all templates found in the currently selected project.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Right-click on the .tt file (or files) in Visual Studio and select "Run Custom Tool".

link|improve this answer
Nice one. Is there a way to make that a build step in VS2008? – Kev Oct 15 '09 at 15:56
1  
Haven't tried this yet myself, but you can probably set up a pre-build step to run the transformation. I just found this link[1] from here[2]. 1 - geekswithblogs.net/EltonStoneman/archive/2008/07/25/… 2 - hanselman.com/blog/… – Stephen Oct 15 '09 at 16:06
Sorry that didn't format very well. But at least the links are there. :) – Stephen Oct 15 '09 at 16:06
Good enough for me and food for thought. Appreciated. – Kev Oct 15 '09 at 16:07
feedback

Your Answer

 
or
required, but never shown

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