我正在尝试遵循本教程,但不是生成带有我的映射的预期 hbm.xml 文件,而是为我的实体生成简单的 .cs 类,例如:
public class ProductMap : ClassMap<Product>
但是我已经在代码中自己定义了这些。我正在寻找我现在可以在标准 NHibernate 中使用的 .hbm.xml。
这就是我设置 SessionFactory 的方式:
private static ISessionFactory CreateSessionFactory()
{
String schemaExportPath = Path.Combine(System.Environment.CurrentDirectory, "Mappings");
if (!Directory.Exists(schemaExportPath))
Directory.CreateDirectory(schemaExportPath);
return Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2008
.ConnectionString(c =>c.FromConnectionStringWithKey("connectionString"))
.Cache(c => c.UseQueryCache()
.ProviderClass<HashtableCacheProvider>()).ShowSql())
.Mappings(m => m.FluentMappings.AddFromAssemblyOf<Program>().ExportTo(schemaExportPath))
.ExposeConfiguration(c => new SchemaExport(c).SetOutputFile(@"c:\temp\test.sql").Create(false, true))
.BuildSessionFactory();
}