亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Nhibernate學(xué)習(xí)之起步篇-1

系統(tǒng) 2004 0

1.學(xué)習(xí)目的
學(xué)習(xí)Nhibernate基礎(chǔ)知識。掌握Nhibernate的配置方法,實現(xiàn)對單表的簡單操作,如:創(chuàng)建表,查詢,添加,刪除,修改。
2.開發(fā)環(huán)境+前期準(zhǔn)備
開發(fā)環(huán)境: windows 2003,Visual studio .Net 2005,Sql server 2005 developer edition
前期準(zhǔn)備: Nhibernate框架,我用的目前最新版NHibernate-<chsdate year="1899" month="12" day="30" islunardate="False" isrocdate="False" w:st="on">1.2.0</chsdate>.CR1, 下載地址: http://downloads.sourceforge.net/nhibernate/NHibernate-1.2.0.CR1.msi?modtime=1172161735&big_mirror=0
3.開發(fā)步驟:
1).雙擊下載下來的NHibernate-<chsdate year="1899" month="12" day="30" islunardate="False" isrocdate="False" w:st="on">1.2.0</chsdate>.CR1.msi,將其安裝到某個目錄,我的目錄為: E:/download project/orm/nhibernate.,打開該目錄,即可以看到bin,doc,src三個子目錄,分別為Realse好的dll或者exe目錄,文檔說明目錄,和源程序目錄.
2).打開visual studio 2005,創(chuàng)建類庫項目NhibernateSample1
3).在解決方案管理其中,右鍵點擊引用-添加引用,在選項卡種選擇瀏覽,設(shè)定查找范圍為:E:/download project/orm/nhibernate/bin, 添加對 Nhibernate.dll,log4net.dll, Iesi.Collections, HashCodeProvider 四個 dll 的引用 .
4).打開SQL Server Management Studio,創(chuàng)建數(shù)據(jù)庫nhibernate。
5).在解決方案管理器中添加hibernate.cfg.xml文件。將下面代碼粘貼到此文件:

<? xmlversion="1.0"encoding="utf-8" ?>
< hibernate-configuration xmlns ="urn:nhibernate-configuration-2.2" >
< session-factory name ="NHibernate.Test" >
<!-- properties -->
< property name ="connection.provider" > NHibernate.Connection.DriverConnectionProvider </ property >
< property name ="connection.driver_class" > NHibernate.Driver.SqlClientDriver </ property >
< property name ="connection.connection_string" > Server=127.0.0.1;initialcatalog=nhibernate;uid=sa;pwd=123; </ property >
< property name ="show_sql" > false </ property >
< property name ="dialect" > NHibernate.Dialect.MsSql2005Dialect </ property >
< property name ="use_outer_join" > true </ property >
<!-- mappingfiles -->
< mapping assembly ="NhibernateSample1" />
</ session-factory >
</ hibernate-configuration >

該文件是 Nhibernate 的配置文件,其中 connection.connection_string 為數(shù)據(jù)庫連接字符串, Dialect 項因為我用的是 SQL2005, 所以為 :MsSql2005Dialect 注意 :<mapping assembly=”NhibernateSample<chmetcnv tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="1" unitname="”" w:st="on">1”</chmetcnv>/> 表示映射 NhibernateSample1 程序集下的所有類,所以以后不要需要 Configuration.AddClass(..) 了;

6). 添加類文件 :User.cs, 添加代碼 :

using System;
using System.Collections.Generic;
using System.Text;

namespace NhibernateSample1
{
public class User
{
private int _id;
private string _name;
private string _pwd;
/**/ /// <summary>
/// 編號
/// </summary>

public virtual int Id
{
get
{
return _id;
}

set
{
_id
= value;
}

}


/**/ /// <summary>
/// 名稱
/// </summary>

public virtual string Name
{
get
{
return _name;
}

set
{
_name
= value;
}

}


/**/ /// <summary>
/// 密碼
/// </summary>

public virtual string Pwd
{
get
{
return _pwd;
}

set
{
_pwd
= value;
}

}

}

}

6). 編寫 User 類的映射配置文件 :User.hbm.xml

<? xmlversion="1.0"encoding="utf-8" ?>
< hibernate-mapping xmlns ="urn:nhibernate-mapping-2.2" >
< class name ="NhibernateSample1.User,NhibernateSample1" table ="Users" lazy ="false" >
< id name ="Id" column ="Id" unsaved-value ="0" >
< generator class ="native" />
</ id >
< property name ="Name" column ="Name" type ="string" length ="64" not-null ="true" unique ="true" ></ property >
< property name ="Pwd" column ="Pwd" type ="string" length ="64" not-null ="true" ></ property >
</ class >
</ hibernate-mapping >

注意:該映射文件的屬性中的生成操作必須為:嵌入的資源.

7).編寫管理ISession對象的輔助類: NHibernateHelper.cs,代碼為:

using System;
using System.Web;
using NHibernate;
using NHibernate.Cfg;

namespace NhibernateSample1
{
public sealed class NHibernateHelper
{
private static readonly ISessionFactorysessionFactory;

static NHibernateHelper()
{
sessionFactory
= new Configuration().Configure( @" E:/myproject/nhibernatestudy/simle1/NHibernateStudy1/NhibernateSample1/hibernate.cfg.xml " ).BuildSessionFactory();
}


public static ISessionGetCurrentSession()
{
ISessioncurrentSession
= sessionFactory.OpenSession();
return currentSession;
}


public static void CloseSessionFactory()
{
if (sessionFactory != null )
{
sessionFactory.Close();
}

}

}

}

: 因為我用的是單元測試,所以這里的配置文件路徑寫成固定的了。如果換成 windows 或者 Web 程序,可以直接去掉該路徑。

8) 編寫測試 CRUD :UserFixue

using System;
using System.Collections.Generic;
using System.Text;
using NHibernate;
using NHibernate.Cfg;
using NHibernate.Tool.hbm2ddl;
namespace NhibernateSample1
{
public class UserFixure
{
private ISessionsession;
public UserFixure()
{

}

/**/ /// <summary>
/// 創(chuàng)建表
/// </summary>

public bool ExportTable()
{
try
{
Configurationcfg
= new Configuration().Configure( @" E:/myproject/nhibernatestudy/simle1/NHibernateStudy1/NhibernateSample1/hibernate.cfg.xml " );
session
= NHibernateHelper.GetCurrentSession();
ITransactiontransaction
= session.BeginTransaction();
new SchemaExport(cfg).Create( true , true );
transaction.Commit();
return true ;
}

catch (Exceptionex)
{
throw ex;
}

finally
{
session.Close();
}

}

/**/ /// <summary>
/// 添加
/// </summary>

public int Add()
{
try
{
Useru
= new User();
u.Name
= Guid.NewGuid().ToString();
u.Pwd
= " 124 " ;
session
= NHibernateHelper.GetCurrentSession();
ITransactiontransaction
= session.BeginTransaction();
session.Save(u);
transaction.Commit();
return u.Id;
}

catch (Exceptionex)
{
throw ex;
}

finally
{
session.Close();
}

}

/**/ /// <summary>
/// 更新
/// </summary>
/// <paramname="uid"></param>

public bool Update( int uid)
{
try
{
session
= NHibernateHelper.GetCurrentSession();
ITransactiontransaction
= session.BeginTransaction();
Useru
= session.Load( typeof (User),uid) as User;
if (u != null )
{
u.Name
= " updatedName " ;
session.SaveOrUpdate(u);
transaction.Commit();
u
= session.Load( typeof (User),uid) as User;
if (u.Name == " updatedName " )
{
return true ;
}

}

return false ;
}

catch (Exceptionex)
{
throw ex;
}

finally
{
session.Close();
}

}

/**/ /// <summary>
/// 刪除
/// </summary>
/// <paramname="uid"></param>
/// <returns></returns>

public bool Delete( int uid)
{
try
{
session
= NHibernateHelper.GetCurrentSession();
ITransactiontransaction
= session.BeginTransaction();
Useru
= session.Get( typeof (User),uid) as User;
if (u != null )
{
session.Delete(u);
transaction.Commit();
u
= session.Get( typeof (User),uid) as User;
if (u == null )
{
return true ;
}

}

return false ;
}

catch (Exceptionex)
{
throw ex;
}

finally
{
session.Close();
}

}

public System.Collections.IListQuery()
{
try
{
session
= NHibernateHelper.GetCurrentSession();
ITransactiontransaction
= session.BeginTransaction();
System.Collections.IListlist
= session.CreateQuery( " selectufromUserasu " ).List();
transaction.Commit();
return list;
}

catch (Exceptionex)
{
throw ex;
}

finally
{
session.Close();
}

}

}

}


9) 創(chuàng)建新單元測試項目 : TestProject1, 添加 NhibernateSample1 的引用
10 )創(chuàng)建單元測試類 : UnitTest1.cs, 并輸入如下代碼 :
using System;
using System.Text;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NhibernateSample1;

namespace TestProject1
{
/**/ /// <summary>
/// UnitTest1的摘要說明
/// </summary>

[TestClass]
public class UnitTest1
{
public UnitTest1()
{
//
// TODO:在此處添加構(gòu)造函數(shù)邏輯
//
}


其他測試屬性 #region 其他測試屬性
//
// 您可以在編寫測試時使用下列其他屬性:
//
// 在運行類中的第一個測試之前使用ClassInitialize運行代碼
// [ClassInitialize()]
// publicstaticvoidMyClassInitialize(TestContexttestContext){}
//
// 在類中的所有測試都已運行之后使用ClassCleanup運行代碼
// [ClassCleanup()]
// publicstaticvoidMyClassCleanup(){}
//
// 在運行每個測試之前使用TestInitialize運行代碼
// [TestInitialize()]
// publicvoidMyTestInitialize(){}
//
// 在運行每個測試之后使用TestCleanup運行代碼
// [TestCleanup()]
// publicvoidMyTestCleanup(){}
//
#endregion


int uid;
[TestMethod]
public void TestMethod1()
{
UserFixureuserFixure
= new UserFixure();
Assert.IsTrue(userFixure.ExportTable());
}

[TestMethod]
public void TestMethod2()
{
UserFixureuserFixure
= new UserFixure();
uid
= userFixure.Add();
Assert.IsTrue(uid
> 0 );
}

[TestMethod]
public void TestMethod3()
{
UserFixureuserFixure
= new UserFixure();
Assert.IsTrue(userFixure.Update(uid));
}

[TestMethod]
public void TestMethod4()
{
UserFixureuserFixure
= new UserFixure();
Assert.IsTrue(userFixure.Delete(uid));
}

[TestMethod]
public void TestMethod5()
{
UserFixureuserFixure
= new UserFixure();
Assert.IsTrue(userFixure.Query().Count
> 0 );
}

}

}


11 )在菜單 - 測試 - 加載元數(shù)據(jù)文件 選擇 NHibernateStudy1.vsmdi ,然后按順序執(zhí)行 TestMethod1-TestMethod5, 全部成功 !
4. 總結(jié)
通過使用 Nhibernate ,基本上可以使開發(fā)人員不在接觸繁瑣的數(shù)據(jù)庫表和數(shù)據(jù)庫操作代碼,您唯一需要關(guān)心的就是如何設(shè)計好類,讓這些類滿足您的業(yè)務(wù)需求。從擴(kuò)展性來說 Nhinernate 具有非常好的擴(kuò)展性。與代碼生成比較, Nhibernate 更改數(shù)據(jù)表結(jié)構(gòu)對代碼的影響要遠(yuǎn)遠(yuǎn)小于代碼生成。
如果您想下載Demo: /Files/jillzhang/simle.rar

Nhibernate學(xué)習(xí)之起步篇-1


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 久久免费观看国产精品 | 久久综合成人网 | 日本欧美高清全视频 | 国产剧情自拍 | 欧美激情精品久久久久久久九九九 | 香蕉视频亚洲一级 | 国产高清国产精品国产k | 狠狠久久亚洲欧美专区 | 亚洲狠狠成人综合网 | 蘑菇视频绿巨人小黄鸭 | 午夜a毛片 | 中文字幕不卡在线播放 | 国产精品视频福利视频网 | 亚洲精品高清在线一区二区三区 | 99久久精品国产一区二区三区 | 成年人色视频 | 久草福利站 | 香蕉综合视频 | 97午夜影院| 久久99精品久久久久久青青日本 | 欧美整片在线 | 国产免费资源 | 色综合合久久天天综合绕视看 | 高清中文字幕免费观在线 | 免费观看91视频 | 午夜国产精品色福利视频 | 爱性网| 久久香蕉国产线看观看精品yw | 国产在线一区二区 | 国产欧美精品区一区二区三区 | 国产一级二级三级 | 成人亚洲国产 | 国产精品久久久尹人香蕉 | 国产精品99re | 日韩激情中文字幕一区二区 | 亚洲涩涩视频 | 亚洲视频毛片 | 日本乱人伦片中文字幕三区 | 女人18毛片a级毛片免费看一 | 久久国产精品99精品国产987 | 香蕉网伊在线中文慕大全 |