我无法想出这个。为什么T4找不到IEnumerable
类型?我正在使用Visual Studio 2010.我希望有人知道为什么?
<#@ template debug="true" hostspecific="false" language="C#" #>
<#@ assembly name="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" #>
<#@ import namespace="System" #>
<#@ import namespace="System.Data" #>
<#@ import namespace="System.Data.SqlClient" #>
<#@ output extension=".cs" #>
public static class Tables
{
<#
var q = @"
SELECT
tbl.name 'table',
col.name 'column'
FROM
sys.tables tbl
INNER JOIN
sys.columns col ON col.object_id = tbl.object_id
";
// var source = Execute(q);
#>
}
<#+
static IEnumerable Execute(string cmdText)
{
using (var conn = new SqlConnection(@"Data Source=.\SQLEXPRESS;Initial Catalog=t4build;Integrated Security=True;"))
{
conn.Open();
var cmd = new SqlCommand(cmdText, conn);
using (var reader = cmd.ExecuteReader())
{
while (reader.Read())
{
}
}
}
}
#>
错误2编译转换:找不到类型或命名空间名称'IEnumerable'(您是否缺少using指令或程序集引用?)c:\ Projects \ T4BuildApp \ T4BuildApp \ TextTemplate1.tt 26 9
答案 0 :(得分:6)
我还建议引用#assembly name =“System.Core”和#import“System.Linq”,以便在使用IEnumerable做某事时获得更多的力量
答案 1 :(得分:3)
可能是因为IEnumerable在System.Collections
。