我有一个我正在尝试创建的 T4 模板,它将通过 Nhibernate 对数据库中的 gen 查找值进行编码。我的问题是我的数据访问层使用 Nhibernate 配置的路径以便在启动时编译配置(静态构造函数)。
我不知道如何让 t4 “看到”这个文件路径,以便当我的代码生成运行时它可以获得这个配置文件。我也不知道如何让 t4 “看到”我的配置管理器类;其中包含列出 nhibernate xml 文件路径的应用程序设置。
我有两个配置文件,一个用于 SQL Server,一个用于 sqlite。配置文件需要在执行程序集的根目录下才能休眠编译配置。
似乎我的模板将无法使用高级业务层从数据库中选择数据,而是我可能不得不将所有 nhibernate 配置代码也复制到模板中(呃)。
我的数据库包装器:
private class DBSingleton
{
static DBSingleton()
{
string path = ConfigurationManager.AppSettings["DBConfigFileFullPath"];
NHibernate.Cfg.Configuration cfg = new NHibernate.Cfg.Configuration().Configure(path);
cfg.AddInputStream(HbmSerializer.Default.Serialize(System.Reflection.Assembly.GetAssembly(typeof(Plan))));
instance = cfg.BuildSessionFactory();
}
internal static readonly ISessionFactory instance;
}
还有我的模板:
<#
System.Diagnostics.Debugger.Launch();
string path = Host.ResolvePath(@"..\DB.UnitTest\App.config");
System.Configuration.ConfigurationManager.AppSettings.Add(
"DBConfigFileFullPath", path);
//System.Configuration.ConfigurationFileMap fileMap = new ConfigurationFileMap(path); //Path to your config file
//System.Configuration.Configuration configuration = System.Configuration.ConfigurationManager.OpenMappedMachineConfiguration(fileMap);
ReferenceValueBL bl = new ReferenceValueBL();
List<ReferenceValue> refVals = bl.Select(); <- problem occurs here
foreach(ReferenceValue rv in refVals)
{
Write("Public ");
Write(rv.ReferenceValueCode.GetType().Name);
Write(" ");
Write(rv.ReferenceValueCode);
Write(" = ");
Write(rv.ReferenceValueCode);
}
#>
当 bl 变量尝试调用 select() 时,就会出现我的问题。那是初始化 DBSingleton 的时候。它抛出一个错误,说应用程序设置为空。如果我将 DB 类中的相对文件路径硬编码为 ./Dbconfig.xml 它仍然会引发错误,因为执行程序集的本地目录中没有该文件。
其他人如何处理让 t4 使用 app/web 配置文件而不从模板中读取配置文件然后将连接字符串注入 DAL?我没有那种奢侈。该文件必须放在可读的位置,或者 t4 必须知道在某处查找。