码迷,mamicode.com
首页 > Web开发 > 详细

IBatis.Net学习笔记六--再谈查询

时间:2015-11-20 19:49:17      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

IBatis.Net学习笔记五--常用的查询方式 中我提到了一些IBatis.Net中的查询,特别是配置文件的写法。

后来通过大家的讨论,特别是Anders Cui 的提醒,又发现了其他的多表查询的方式。
在上一篇文章中我提到了三种方式,都是各有利弊:
第一种方式当数据关联很多的情况下,实体类会很复杂;
第二种方式比较灵活,但是不太符合OO的思想(不过,可以适当使用技术分享);
第三种方式最主要的问题就是性能不太理想,配置比较麻烦。

下面是第四种多表查询的方式,相对第二种多了一点配置,但是其他方面都很好
(当然可能还有其他更好地解决方法,希望能多提宝贵意见-_-)
例子还是一样:两张表Account和Degree,使用Account_ID关联,需要查出两张表的所有纪录

首先:修改实体类,增加以下属性:

技术分享        private Degree _degree;
技术分享        public Degree Degree
技术分享        {
技术分享            get
技术分享            {
技术分享                return _degree;
技术分享            }
技术分享            set
技术分享            {
技术分享                _degree = value;
技术分享            }
技术分享        }

(和第三种方法一样)

然后:修改配置文件,这也是最重要的地方(PS:IBatis.Net中的配置文件真的很强)
resultMaps节加入:

技术分享    <resultMap id="com2result"  class="Account" >
技术分享      <result property="Id"           column="Account_ID"/>
技术分享      <result property="FirstName"    column="Account_FirstName"/>
技术分享      <result property="LastName"     column="Account_LastName"/>
技术分享      <result property="EmailAddress" column="Account_Email" nullValue="no_email@provided.com"/>
技术分享      <result property="Degree"  resultMapping="Account.Degree-result"/>
技术分享    </resultMap>
技术分享
技术分享    <resultMap id="Degree-result"  class="Degree">
技术分享      <result property="Id"           column="Account_ID"/>
技术分享      <result property="DegreeName"    column="DegreeName"/>
技术分享    </resultMap>

这里最主要的就是使用了resultMapping属性,resultMapping="Account.Degree-result",其中Account是当前配置文件的namespace:
<sqlMap namespace="Account"  ......


statements节加入:

技术分享    <select id="GetCom2Tables"
技术分享     resultMap="com2result">
技术分享      select Accounts.*, Degree.*
技术分享      from Accounts,Degree
技术分享      where Accounts.Account_ID = Degree.Account_ID
技术分享    </select>

这样就可以随心所欲的写自己需要的sql,性能也很好,不会出现第三种方法中的1+n条的查询语句了。

 

http://www.cnblogs.com/firstyi/archive/2007/08/22/864942.html

IBatis.Net学习笔记六--再谈查询

标签:

原文地址:http://www.cnblogs.com/soundcode/p/4981661.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!