当我调用此方法时,内存将增加(1M-3M):engine.ProcessTemplate(inputTemplate,host)。我不知道为什么?
注意:我使用t4模板生成代码。
这是我的代码:
Engine engine = new Engine();
host.Session = new TextTemplatingSession();
Parameter nameSpaceParameter = new Parameter() { Text = "NameSpace", Value = this.txtNameSpaceRoot.Text };//+ strTmp.Replace("Templates." + this.CurSelectedNode.DisplayName, string.Empty)
host.Session.Add("NameSpace", nameSpaceParameter);
Parameter tableNameParameter = new Parameter() { Text = "TableName", Value = oName.Substring(2)};
host.Session.Add("TableName", tableNameParameter);
string inputTemplate = File.ReadAllText(host.TemplateFileValue);
string content=engine.ProcessTemplate(inputTemplate, host);
这是我的t4模板文件:
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ output extension=".cs" #>
<#@ parameter name="NameSpace" type="SmartCodeGenerator.Parameter" #>
<#@ parameter name="TableName" type="SmartCodeGenerator.Parameter" #>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Linq.Expressions;
using <#=NameSpace.Value#>.DAL;
using <#=NameSpace.Value#>.Model;
namespace <#=NameSpace.Value#>.BLL
{
public class <#=TableName.Value#>Repository
{
RepositoryBase<<#=TableName.Value#>Model> repository = null;
public <#=TableName.Value#>Repository()
{
repository = new RepositoryBase<<#=TableName.Value#>Model>();
}
#region IRepository<T> 成员
public <#=TableName.Value#>Model Create()
{
return repository.Create();
}
public <#=TableName.Value#>Model Update(<#=TableName.Value#>Model entity)
{
return repository.Update(entity);
}
public <#=TableName.Value#>Model Insert(<#=TableName.Value#>Model entity)
{
return repository.Insert(entity);
}
public void Delete(<#=TableName.Value#>Model entity)
{
repository.Delete(entity);
}
public IList<<#=TableName.Value#>Model> FindAll()
{
return repository.FindAll();
}
public List<<#=TableName.Value#>Model> QueryByPage<TKey>(Expression<Func<<#=TableName.Value#>Model, bool>> filter, Expression<Func<<#=TableName.Value#>Model, TKey>> orderby, int OrderType, int Take, int Skip, out int recordsCount)
{
recordsCount = repository.Query(filter).Count();
if (OrderType == 0)
{
return repository.Query(filter).OrderBy(orderby).Take(Take).Skip(Skip).ToList();
}
else
{
return repository.Query(filter).OrderByDescending(orderby).Take(Take).Skip(Skip).ToList();
}
}
#endregion
}
}
答案 0 :(得分:0)
我不确定是什么引起了您的关注,或者是什么情况导致您需要直接实例化引擎而不是使用VS Service接口。但是,如果引擎的实例化是第一次在给定的VS进程中调用任何T4方法,则NGEN的程序集将出现故障,从而导致工作集跳转。如果它在调用ProcessTemplate时,那么这可能是您在场景中第一次使用实际的参数汇编。没有更多的背景,这有点难以辨别。