I have overridden the controller generation T4 templates (ControllerWithContext.tt
) as described here.
I would like to take advantage of the code helper utilities found in EF.utility.CS.ttinclude
as used in the POCO model generator T4 template. Therefore I copied the following lines from my Model.tt
to my ControllerWithContext.tt
.
<#@ include file="EF.Utility.CS.ttinclude"#>
However, when I try to add a controller I am getting the error message
Loading the include file 'EF.utility.CS.ttinclude' returned a null or empty string
According to the MSDN documentation, this error is because the included file is blank, which it clearly isn't because it works with Model.tt
The only difference I can see is that the overridden ControllerWithContext.tt
does not have a Custom Tool defined, whereas the Model.tt
has it set to TextTemplatingFileGenerator
.
My workaround is to copy the functions I need from ef.utility.cs.ttinclude
into my ControllerWithContext.tt
, which in itself threw up more errors but which were easily solved.
How can I include T4 templates without a custom tool defined?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…