web.config中的NHibernate配置 - 使用现有的连接字符串

时间:2009-11-17 15:00:38

标签: nhibernate nhibernate-configuration

我已在我的web.config文件中成功设置了NHibernate配置。但是,我也使用ASP.NET Membership,它需要在connectionStrings元素中定义连接字符串。有没有办法让我的NHibernate配置使用这个值,所以我不需要两次定义连接字符串?

2 个答案:

答案 0 :(得分:17)

您可以在NHibernate配置中使用connection.connection_string_name元素。看看here。然后NHibernate将从web.config文件中按名称获取连接字符串

您需要使用配置中的connection.connection_string_name属性:

<connectionStrings>
    <add name="default" connectionString="server=(local);etc." />
</connectionStrings>

<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <session-factory>
        <property name="connection.connection_string_name">default</property>
    </session-factory>
</hibernate-configuration>

使用流畅的配置,您可以执行以下操作

ConnectionString(c=>c.FromConnectionStringWithKey("YourConnStrName"))

使用NHibernate配置API,您可以执行以下操作:

var cfg = new Configuration();
cfg.DataBaseIntegration(db =>
{
    db.ConnectionStringName = "default";             
});

答案 1 :(得分:1)

只是为了添加狡猾的答案,您可以使用FluentNHibernate这样做(在您的流畅配置中):

.ConnectionString(c=>c.FromConnectionStringWithKey("con_development"))