9

我正在尝试遵循本教程,但不是生成带有我的映射的预期 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();
    }
4

1 回答 1

9

请参阅:Fluent_Configuration,页面的最后一部分。

它显示了这段代码

.Mappings(m =>
{
  m.FluentMappings
    .AddFromAssemblyOf<YourEntity>()
    .ExportTo(@"C:\your\export\path");

  m.AutoMappings
    .Add(AutoMap.AssemblyOf<YourEntity>(type => type.Namspace.EndsWith("Entities")));)
    .ExportTo(@"C:\your\export\path");
})
于 2010-07-08T14:24:01.303 回答