asp.net mvc
what is t4 template in mvc?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ramesh MaruthiPosted Oct 24, 2014, 4:49 PM
T4 stands for Text Template Transformation Toolkit. T4 generates text based on Text based template files,
Template is a combination of text and control logic that you can define using C# or VB.net.
Transformation actually executes the code written in template and brings out a final output whereas
the Toolkit contains some assemblies leverage to produce the desire output file.
Once refer to this link :)
http://architects.dzone.com/articles/basic-introduction-about-t4
http://ovaismehboob.wordpress.com/2012/11/22/basic-introduction-about-t4-templates-how-to-customize-them-for-asp-net-mvc-project/