what is t4 template in mvc
asp.net 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.
Blocked AccountPosted Oct 25, 2014, 1:05 AM
In MVC t4 stands for (Text Template Transformation Toolkit ). We use this template to generate the code when we add a view or controller in MVC. The file extension of this template is tt. Basically when we add a view or controller using a scaffhold template it is called a T4 template. By using this template if we add a controller or view then it generates some code automatically.
For detail take the reference of this article
What a T4 Template is in MVC