<#@ template debug="false" hostspecific="false" language="C#" #> <#@ assembly name="System.Core" #> <#@ assembly name="$(SolutionDir)\OA\bin\model.dll" #> <#@ import namespace="System.IO" #> <#@ import namespace="System.Linq" #> <#@ import namespace="System.Text" #> <#@ import namespace="System.Collections.Generic" #> <#@ include file="T4Toolbox.tt" #> <#@ include file="HelloWorldTemplate.tt" #>
需要要用自定义的类Person,放在MODEL下,用Reflector查看Model.dll有这个类,模板文件CTRL+S不报错,但是在文件里就是不能Person p=new Person();报错如下:错误 1 正在编译转换: 未能找到类型或命名空间名称“Person”(是否缺少 using 指令或程序集引用?)
请问,找到解决办法了吗?
直接在页面下方定义这个类