中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

裕民县| 廊坊市| 柘城县| 石河子市| 定结县| 凤庆县| 集贤县| 家居| 罗源县| 弋阳县| 庄浪县| 二连浩特市| 陕西省| 靖宇县| 武冈市| 若尔盖县| 喀喇| 常熟市| 绍兴市| 石城县| 阳江市| 合山市| 石首市| 东平县| 于都县| 皮山县| 德保县| 光山县| 清苑县| 天峻县| 昭平县| 苏尼特左旗| 泰州市| 夏河县| 赣州市| 山阳县| 晋中市| 海口市| 冕宁县| 广西| 辛集市|