Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 T4 tt 文件,我试图在其中调用一个函数表,该函数表位于不同的命名空间和类中,分别表示 r2ts 和 sql..
我已经导入了命名空间并进行如下调用
<#@ import namespace= "r2ts" #> <# WriteLine(r2ts.sql.GetTable(schema, tablename)); #>
它不起作用,如下所示
编译转换:找不到类型或命名空间名称 r2ts(您是否缺少 using 指令或程序集引用?)
任何工作请...
我认为您必须引用 dll 以及程序集指令
<#@ assembly name="Name of the assembly" #>
...检查这个