0

我有一个使用 NHibernate 的应用程序,我正在使用 Fluent NHibernate 来映射我的实体。它工作正常,但是,我想使用 NHibernate 的本地方式创建 SessionFactory,因为我的团队将在其他项目中使用这个库,所以我们需要这种灵活性来移动 nhibernate.cfg.xml。我的问题是:如何在 SessionFactory 的配置中使用 nhibernate 的本机方式设置 Fluent Mappings?

我在我的配置方法上尝试这样的事情:

private static ISessionFactory Configure()
{
    if (_factory != null)
        return _factory;

    var configuration = new Configuration().Configure();

        // I could set my assembly of mapping here, but it's on our internal framework
    var fluentConfiguration = Fluently.Configure(configuration)
        //.Mappings(c => c.FluentMappings.AddFromAssembly(typeof(ProductMap)))
        .BuildConfiguration();

    _factory = fluentConfiguration.BuildSessionFactory();

    return _factory;
}

我试图通过xml设置它,但它不起作用。

<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <session-factory>     
        <!-- other configs here...-->     
        <mapping assembly="MyApplication.Data.Mapping" />
    </session-factory>
</hibernate-configuration>

我不知道是否有任何方法可以在 xml 上设置此映射并传递给FluentConfiguration我的方法上的声明以创建ISessionFactory.

谢谢你们。

4

1 回答 1

0

config 中的映射不起作用,因为它不会考虑 Fluentmappings(Nhibernate 不知道 FluentNhibernate)。您必须通过代码设置它。我能想到的最佳选择是在构建 sessionfactory 之前实现一个挂钩来更改配置对象:

private static ISessionFactory Configure()
{
    if (_factory != null)
        return _factory;

    var configuration = new Configuration().Configure();

    foreach(var alteration in alterations)
    {
        alteration.AddTo(configuration);
    }

    _factory = fluentConfiguration.BuildSessionFactory();

    return _factory;
}

// in your alteration
Configuration AddTo(Configuration config)
{
    return Fluently.Configure(config)
               .Mappings(c => c.FluentMappings.AddFromAssembly(typeof(ProductMap)))
               .BuildConfiguration();
}
于 2012-09-14T06:51:55.030 回答