T4模板在导入的程序集上失败并出现MissingMethodException

时间:2016-09-30 20:54:49

标签: c# .net visual-studio templates t4

我创建了一个T4模板,并决定创建一些辅助类来清理模板代码。我在我的帮助器类的解决方案中创建了一个新的类项目,在我的模板中引用了程序集并导入了名称空间。

以下是一个例子:

<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="Microsoft.SqlServer.ConnectionInfo" #>
<#@ assembly name="Microsoft.SqlServer.Smo" #>
<#@ assembly name="Microsoft.SqlServer.SmoExtended" #>
<#@ assembly name="$(SolutionDir)\MySolution.SqlMetaHelper\bin\Debug\MySolution.SqlMetaHelper    .dll" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="Microsoft.SqlServer.Management.Common" #>
<#@ import namespace="Microsoft.SqlServer.Management.Smo" #>
<#@ import namespace="MySolution.SqlMetaHelper" #>
<#@ output extension=".txt" #>
<#
string @namespace = "MySolution.Data";
ServerConnection connection = new ServerConnection("localhost", "sa", "password");  
Server server = new Server(connection);
Database database = server.Databases["MySolution"];
#>
namespace <#= @namespace #>
{
<#
foreach (Table table in database.Tables)
{
#>
    public interface I<#= table.Name #>
    {
        //Properties
<#
    foreach (ColumnMeta column in table.Columns.Cast<Column>().Select(c => new ColumnMeta(c)))
    {
#>
        //<#=column.Name#>
<#
    }
#>
    }
<#
}
#>
}

模板无法执行并返回此错误:

Severity    Code    Description Project File    Line    Suppression State
Error       Running transformation: System.MissingMethodException: Method not found: 'Void MySolution.SqlMetaHelper.ColumnMeta..ctor(Microsoft.SqlServer.Management.Smo.Column)'.
   at Microsoft.VisualStudio.TextTemplatingE69FE551E9A42AE5D542A4EC2CDCECEDBDBC96F903EFDB8864E380652948850C270A5AC8C04E0B0F9368C0530BF3447DEAFC3716CC5CE03ABD37589675749A74.GeneratedTextTransformation.<>c.<TransformText>b__0_0(Column c)
   at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
   at Microsoft.VisualStudio.TextTemplatingE69FE551E9A42AE5D542A4EC2CDCECEDBDBC96F903EFDB8864E380652948850C270A5AC8C04E0B0F9368C0530BF3447DEAFC3716CC5CE03ABD37589675749A74.GeneratedTextTransformation.TransformText() MySolution.Data C:\Users\me\documents\visual studio 2015\Projects\MySolution\MySolution.Data\Entities.tt    1

我尝试了许多没有成功的事情,但我找不到任何与网络上的情景相符的内容。我觉得它与“Microsoft.SqlServer。???”的引用有关。程序集,因为它们被模板和外部库引用,也许是不同的版本,但我不知道如何解决这个问题。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我能够通过在助手类项目中引用相同的程序集来解决这个问题。

我确定了Microsoft.SqlServer。???引用设置为复制本地,然后我更新了t4模板的程序集部分,以使用复制到构建文件的程序集,如下所示:

<#@ assembly name="$(SolutionDir)\MySolution.SqlMetaHelper\bin\Debug\Microsoft.SqlServer.ConnectionInfo.dll" #>
<#@ assembly name="$(SolutionDir)\MySolution.SqlMetaHelper\bin\Debug\Microsoft.SqlServer.Smo.dll" #>
<#@ assembly name="$(SolutionDir)\MySolution.SqlMetaHelper\bin\Debug\MySolution.SqlMetaHelper.dll" #>

GAC程序集版本必须与项目引用的程序集不匹配。