您好,登录后才能下订单哦!
关于NHibername 存储过程的文章不多,而且网上搜索基本上示例程序也就那几个,尤其是对于返回记录集的存储过程。本人根据研究总结此文,该文是针对MySql数据库的,其他数据库部分细节略有不同。
1,创建存储过程:
DELIMITER $$ DROP PROCEDURE IF EXISTS `test_get_prices` $$ CREATE DEFINER=`admin`@`%` PROCEDURE `test_get_prices`() BEGIN select a.id as id,a.xibie as xb,b.checi as cc,a.OStation as os,a.DStation as ds from noshow_data as a, phone_book_data as b where a.checi=b.checi and a.date=b.go_date; END $$ DELIMITER ;
这是一个返回记录集的存储过程,可能跨几个表,并且只取部分表的部分字段,还有可能是sum等根据其它值计算出的结果组成的临时字段。
值得注意的是,如果想使用NHibernate对该存储过程结果集进行映射,就必须保证返回的结果集有主键,这是因为NHibernate的mapping文件必须要有主键的定义项(本人一直未试出无主键或者mapping文件为结果集自己生成主键的方法)。
2,编写Model类:
public class ProcRequestPrice { public virtual int Id { get; set; } public virtual string Checi { get; set; } public virtual string Xibie { get; set; } public virtual string OStation { get; set; } public virtual string DStation { get; set; } }
Model类的字段是根据存储过程返回的结果集确定的。
3,编写NHibernate Mapping文件:
<?xml version="1.0" encoding="utf-8"?> <hibernate-mapping assembly="Data.MySql" namespace="Data.MySql.models" xmlns="urn:nhibernate-mapping-2.2"> <class name="ProcRequestPrice" mutable="false"> <id name="Id" type="System.Int32"> <generator class="increment" /> </id> <property name="Checi" column="cc" type="System.String" /> <property name="Xibie" column="xb" type="System.String" /> <property name="OStation" column="os" type="System.String" /> <property name="DStation" column="ds" type="System.String" /> </class> <sql-query name="GetRequestPrices" callable="true"> <return alias="requestPrice" class="ProcRequestPrice"> </return> call test_get_prices() </sql-query> </hibernate-mapping>
其中mutable="false",是指该对象只读不可变。GetRequestPrices是用于DAL中调用的标识。这里没有指定映射的表名,因为映射的不是实体表,是存储过程返回的结果集。
MySql下为call test_get_prices(), SqlServe下为exec test_get_prices(),带参数的请参考文章:
http://www.cnblogs.com/lyj/archive/2008/11/03/1325291.html
http://www.cnblogs.com/lyj/archive/2008/11/06/1328240.html
http://www.cnblogs.com/lyj/archive/2008/11/07/1328782.html
记得设置Mapping文件为嵌入的资源。
4,调用及测试程序的编写
本测试程序是基于NUnit编写的:
[TestFixture] public class CustomerTest { private NHibernateHelper nhibernateHelper = new NHibernateHelper(); [Test] public void ProcedureTest() { try { IQuery query = nhibernateHelper.GetSession().GetNamedQuery("GetRequestPrices"); List<ProcRequestPrice> rs = query.List<ProcRequestPrice>() as List<ProcRequestPrice>; Console.Out.WriteLine("count:" + rs.Count); foreach (ProcRequestPrice rp in rs) { Console.Out.WriteLine("value:" + rp.Id + "," + rp.Checi + "," + rp.Xibie + "," + rp.OStation + "," + rp.DStation); } } catch (Exception e) { Console.Out.WriteLine(e.StackTrace.ToString()); } } }
测试通过,大功告成。
另外,目前有一个开源的NHibernate O/R Mapping生成工具:NHibernateMappingGenerator,不过还处于开发阶段,bug很多,只能生成Model,Mapping文件,我在目前最新版本上修复了几个Bug,并增加了生成DAL和IDAL,且生成工具能合并DAL中自定义的方法。等有空整体发上来。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。