T4 stands for Text Template Transformation Toolkit and is Microsoft's template based text generation framework included with Visual Studio.
0
votes
0answers
18 views
Does T4 templates Support complex properties?
I have a model Like this
public class TestModel
{
public Person person{ get; set; }
public string Type { get; set; }
}
public class Person
{
public string FirstName{ get; set; }
...
0
votes
1answer
47 views
T4 subtemplates TransformText() not working
I have a very strange situation with T4 templates.
I have a collection of strings which are representing entities to be generated with a template. Here I have such code:
<#@ template ...
-2
votes
0answers
19 views
Is it possible to execute multiple T4 template files once? [closed]
I have about 5 T4 template files and they are all working.
My question is if it is possible for me to create another T4 template file and include all the above 5 templates files and execute them all ...
1
vote
1answer
26 views
T4 reference a const in a static class at compile time
I have a T4 C# file in which I need to reference a constant in a static class. The static class is in the same namespace.
Is this possible?
The below is merely an illustration. I need to calculate ...
0
votes
1answer
18 views
How can I create an abstract Host property in a T4 template base class with VS2010?
I created a base class to use with a T4 template, in an assembly separate from the assembly where the template exists. In the base class I need to access the Host property. This property is added ...
0
votes
0answers
22 views
calculated columns into wpf DataGrid and t4 template
I opened a new WPF project in VS2012 .NET 4.5 and I added an ADO.NET Entity Data Model then Generate from database ...
I added to the main window The code below
<DataGrid x:Name="dg" ...
1
vote
1answer
21 views
T4 template adding assembly of existing project in solution
Hi I need to add the assembly of an an existing project in my solution in my T4 Template file.
The problem is that my T4 template is in a project called Project.WebApi and the class that I need in my ...
1
vote
1answer
39 views
T4 a namespace cannot directly contain membes such as fields or methods
Hi I am just starting out with T4 templates and I need to generate a javascript file based on the actions in my controller.
I got the code all figured out forgetting the controllers and actions my ...
0
votes
0answers
22 views
T4 Template Processing Error: “Failed to resolve type for directive processor <directive processor name>.”
So I've been having this really nasty error that I've been trying to get rid of for the past couple of days...
I have a T4 template that I run in the debugging solution of a Domain Specific Language ...
0
votes
0answers
26 views
Generating a POCO from database, Detecting when to use List<object>
I am trying to write a T4 template to generate our poco models from the database. I have it generating everything perfectly accept the relationships. I have not gotten the ability to gather the ...
0
votes
0answers
29 views
Get-ProjectType is very slow in T4 Template
Calling Get-ProjectType from a T4 Template in Visual Studio is very slow (upwards of 15 seconds). Is there any way to speed this up?
1
vote
1answer
43 views
passing value from asp.net page to t4 template
I wish to pass a string value from my asp.net web page to a t4 runtime template. The runtime template includes some more template files. ie.
My runtime template is say, runTym.tt
This runTym.tt ...
1
vote
1answer
36 views
Entity Framework 5 - T4 generated context class causing 'duplicate parameter name'
I'm using EF5.0 in an ASP.NET MVC app. My Entity Model is named 'DataModel'. Included in the model is a table-valued function that exists in my MSSQL database, named MatchingEntries. It returns a ...
0
votes
0answers
16 views
EF: Get the linked column names from NavigationProperty without EDMX (code first)
Sometime ago, I modified the templates of EF(5) for generation of POCOs using only data-annotations and no mappings.
I used them for experimental purphoses and now that I'm using them in production I ...
0
votes
1answer
29 views
How to join t4 element using comma separator in js file?
Hi; i would like to generate Js file to access using best overload method from js files. i can create a js file as aproprite format by T4. But my properties in js file is separated each other by ...
0
votes
0answers
72 views
“Cannot find file” error during T4 template compilation
I've customized a T4 template in Visual Studio 2012, and while building I'm getting the following error message:
Error 54 Running transformation: System.Runtime.InteropServices.COMException ...
0
votes
2answers
45 views
adding attributes to a T4 preprocessor class
Suppose I have a T4 template TextTemplatingFilePreprocessor (that generates a class that generates an output): is it possible to add an attribute to the generator class (NOT inside the output itself)?
...
0
votes
0answers
15 views
Is it possible to generate EDMX from an Xml database?
I'm programming an application to run queries on a database. So I used EDMX and it's fine.
However I realized that I can have different versions of my database. I know I can update the edmx from the ...
1
vote
1answer
41 views
Programmatically import stored procedures in T4 in EF 5
I have a T4 template that generates the edmx model of my DB; I have to use this T4 template because i have to define my own localized pluralization dictionary to manage plurals/singulars.
The bad ...
0
votes
2answers
34 views
Executing T4 template: Host is null while hostspecific=“True”
I am trying to write a console program that takes the file name of a T4 template as a parameter, and then processes the template. This because I want users to be able to update the template without ...
6
votes
1answer
102 views
Generate JavaScript Representation of Enums
I have a few [Flags] enums in my code I'd like to expose to JavaScript without copy&pasting. SignalR seems to be doing something similar for their Hub-proxies by mapping an URL to an Action ...
0
votes
0answers
31 views
How can I trigger a TFS build when data in Dynamics CRM changes?
The setup we are envisoning is perhaps a little convoluted. However let me start by describing our main goal. We have a Microsoft Dynamics CRM setup which contains data that we would like to build ...
0
votes
1answer
38 views
The templates had the following errors when running
When I try to add a strongly typed view in ASP.NET MVC 3, I get the following error:
I restarted Visual studio, rebuild the project, tried again to add a view and got the following:
My model:
...
1
vote
0answers
17 views
Parameterised T4 Template via Add New Item
I am just starting to cut my teeth on T4 Templates and my first experiment is trying to add some T4 Templates to use from VS via Add New Item.
In my case I am initially looking at creating SQL ...
5
votes
1answer
85 views
Dynamically change data annotation in dynamic data project
I have come across a scenerio that to customize DataAnnotations in Dynamic Data Web Application. This is the scenerio:
[Display(Name="DispName")]
public string DName{get;set;}
Instead of hardcoding ...
0
votes
0answers
34 views
Why is there a huge delay when my T4 template creates designer files?
I am using a T4 template with T4 Toolbox within Visual Studio 2012 to generate about 100 files and add them to the project. I have two templates, one of which outputs a .cs file, the other outputs a ...
0
votes
1answer
24 views
Convert EdmType to JsonSchemaType
I am making C# code generation with T4 for an ASP.NET Web API project... I need a simple way to convert an EdmType to JsonSchemaType.
Thanks!
0
votes
0answers
28 views
Dynamically create edmx entities using T4
I have a situation to create (visible true/false) some entities(Tables) in edmx file depends upon some table row values using T4 template in C#. how can I do this?
Edit: I have created edmx file with ...
0
votes
1answer
92 views
Create a custom class in c# using T4 template based on database table values
I have a situation to create a custom class(C#) from some values defined in sql database table which is mapped into an entity framework .edmx file.Depends upon the values from the table, the ...
6
votes
1answer
71 views
Dynamic Data DataAnnotations setting dynamically using t4 template
Is there any way to set dynamically the dataannotations according to some values in database?
My requirement is like this:
Display(Name="DispName")]
public string DName{get;set;}
Instead of ...
2
votes
0answers
63 views
Error In Visual Studio 2012 architecture Code Generate
I use VS2012 for design UML Diagram and i use T4 for generate custom class and interface.
And i Use TFS for Source controler.
But since yesterday I'm getting an error and Codes are not generated.
...
0
votes
0answers
42 views
Error when running T4 template to pregenerate views for EF5 CodeFirst
I just added the "EF Code First Pre-generated Views Generate for C#" to my EF 5 Code first project so I can pre-generate views and decrease inital load time of my site. I made sure to name it ...
4
votes
3answers
159 views
Advantage of t4 templates over Class files [closed]
What is the advantage of t4 templates over Class files in asp.net?
Like we are generating strongly typed class using t4 templates. We can do the same using c# class files in asp.net. So, what is the ...
3
votes
0answers
107 views
Get metadata of model (TableName) in mvc4 Using t4 Scaffolding
Using MVC4 and T4 Template(Scaffolding)
I am creating a model in mvc4 and specify the table name in DBContext.
1)I need to get the table from Dbcontext against model name.
2)Need to get value from ...
1
vote
1answer
53 views
Using PetaPoco T4 Generated file with a WSP (Web Site Project) project
In my ASP.NET 4.0 WSP project, I'm using PetaPoco for most of the data access. I've successfully generated the classes from the Database using the T4 templates. But, by default, when you set install ...
0
votes
1answer
30 views
Generation of .svc-files on IIS fails when using custom RIAServices.T4 code generation
I have a Silverlight application that uses a custom DomainContextGenerator and a custom EntityGenerator:
[DomainServiceClientCodeGenerator("MainCodeGenerator", "C#")]
public class HrCodeGenerator : ...
6
votes
1answer
46 views
Pass an array of bytes to T4 Template code into another array of same type
I'm using T4Template and codeDOM to create an assembly using the following code:
CompilerParameters Params = new CompilerParameters();
Params.GenerateExecutable = true;
...
0
votes
1answer
55 views
Visual Studio 2010 T4 Code Generation for Templated Types
I am using the default T4 templates to generate code based on my UML Model. I have a number of classes that expose Template Parameters. These generate code as expected. For example the MessageResponse ...
0
votes
1answer
24 views
Dynamic DbContext Generation
I need to write a web site content management system that makes use of dynamic Entity Framework DbContext generation. As an input I get a custom data types declaration (in xml) that my C# code knows ...
0
votes
2answers
116 views
Location of EntityFramework T4 templates
When you do database-first or model-first (EDMX) in EntityFramework, I believe Visual Studio generates code off T4 templates, I would like to create a new out of the default and throw some ...
0
votes
1answer
43 views
Get The Table Name Of Model In T4 Template
I am using MVC4 ,T4 Scaffolding and EF5.
I Created a model,
namespace wbtest.Models
{
[Table(name: "Pay_Employees_Mst", Schema = "Test")]
public class Employee
{
public int EMPLOYEE_ID { get; set; ...
1
vote
1answer
47 views
How to debug custom ASP.NET MVC Text Templates?
How do you go about debugging the T4 process when you are customizing the template?
I've followed the procedure in Hanselman's post to add the templates to my project so that is uses them when using ...
7
votes
1answer
117 views
Customize Context filename when using Entity Framework Power Tools Reverse Engineering
When I generate the Context using EF Power Tools reverse engineering, it created a class with my DB name in a file with my DB name. I was able to modify the T4 template to use a static name for the ...
2
votes
1answer
135 views
Get all methods that are decorated with a specific attribute using T4/EnvDTE
I'd like to get a list of all public methods in my project that are decorated using MyAttribute using T4/EnvDTE.
I know this can be done with reflection, but I don't want to load the assembly and ...
1
vote
1answer
50 views
How to make EF generate better Many to Many key names
I have the following DB schema:
In a nutshell, it's a cross-reference. Part "A" can cross reference to many target parts.
EF generates the PartCrossReference like this
public partial class ...
0
votes
1answer
75 views
Visual Studio T4 - include file using environment variable
I have some T4 templates set up which reference other shared T4s. One T4 references another like this:
<#@ include file="%MTF%\DAL\Models\DALContextGenerator.tt"#>
This works fine except MTF has ...
1
vote
0answers
98 views
How to initialize various type variables in dynamically generated C# code?
I have T4 template where I'd like to generate an .cs file.
I have an array of System.Data.DataColumn that i'd like to use as a private variables in my generated code file.
I'm using ColumnName as ...
0
votes
2answers
56 views
Using precompiled T4 text templates in a Visual Studio web site project?
In a Visual Studio web application project the custom tool information set via the file properties window is being stored in the CSPROJ project file on per file basis.
In a Visual Studio web site ...
0
votes
0answers
88 views
Entity Framework files are not recognized in Visual Studio 2010 after installing Visual Studio 2012
I have Visual Studio 2010 Ultimate on my computer and recently I have installed Visual Studio 2012 Professional to test it out. I was going through Julie Lerman's Pluralsight course to learn Entity ...
0
votes
0answers
120 views
Setting Selected Value in DropDownLIstFor in MVC 4
I am using MVC4 and t4 scaffolding.
For Dropdown list Binding i added in view
@Html.DropDownListFor(model => model.PAY_EMPLOYEE_MST1ID, ((IEnumerable)ViewBag.PossiblePAY_EMPLOYEE_MST1).Select(option ...



