亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

NHibernate.cfg.xml文件總結

發布時間:2020-07-28 05:04:04 來源:網絡 閱讀:1153 作者:刺激樂天派 欄目:編程語言

   A. 問題:

    NHibernate.cfg.xml用來干什么的?


    答:

        配置數據庫的基本信息和configuration和sessionFactory實例的基本信息的配置文件。

    

   B. 如何配置NHibernate.cfg.xml文件?


    答:

  1. 第一種方式

    Configuration config = new Configuration();

    這種配置方法將會到應用程序配置文件(App.Config,Web.Config)中查找NHibernate的配置信息,NHibernate的配置節必須符合應用程序配置文件個格式。

    下面是該種方式的一個例子:

    

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<!-- Add this element -->
<configSections>
    <section name="hibernate-configuration" type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate"/>
</configSections>

<!-- Add this element -->
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
<session-factory>
<property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
<property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
<property name="connection.connection_string">Server=TLSZ207/SQLEXPRESS;initial catalog=Test;Integrated Security=true</property>
</session-factory>
</hibernate-configuration>
<!-- Leave the system.web section unchanged -->
<system.web>
</system.web>
</configuration>

2.第二種方式

    Configuration config = new Configuration().Configure();

這種配置方法將會在應用的相同目錄查找名為”hibernate.cfg.xml”的標準Hibernate配置

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-configuration  xmlns="urn:nhibernate-configuration-2.0" >
 <session-factory name="MySessionFactory">
              <!-- properties -->
              <property name="connection.provider">NHibernate.Connection.DriverConnectionProvider</property>
              <property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
              <property name="connection.connection_string">Server=localhost;initial catalog=Hibernate;Integrated Security=SSPI</property>
              <property name="show_sql">false</property>
              <property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property>
              <property name="use_outer_join">true</property>
              <property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>

              <!-- mapping files -->
              <mapping assembly="Test.Model" />
       </session-factory>
</hibernate-configuration>

3.第三方式

這種配置方法將查找指定的Hibernate標準配置文件,可以是絕對路徑或者相對路徑。還可以通過編碼的方式來添加配置信息:Configuration config = new Configuration().Configure(NHibernate.cfg.xml配置文件路徑);


映射文件: 
  所有的XML映射都需要使用nhibernate-mapping-2.0 schema。目前的schema可以在NHibernate的資源路徑或者是NHibernate.dll的嵌入資源(Embedded Resource)中找到。NHibernate總是會優先使用嵌入在資源中的schema文件。你可以將hibernate-mapping拷貝到C: /Program Files/Microsoft Visual Studio .NET 2013/Common7/Packages/schemas/xml路徑中,以獲得智能感知功能



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邓州市| 锡林浩特市| 九龙县| 洛南县| 石首市| 拉孜县| 中方县| 来凤县| 昌图县| 九龙县| 克山县| 武强县| 西贡区| 平武县| 财经| 平果县| 邢台市| 苗栗县| 霍山县| 宣武区| 准格尔旗| 莱州市| 惠州市| 修武县| 博乐市| 沙雅县| 台南县| 大城县| 山丹县| 伊宁县| 丰都县| 渝北区| 玉环县| 深州市| 蕉岭县| 抚顺县| 长寿区| 通州市| 新河县| 临海市| 大新县|