文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>IBatis.Net学习笔记(四)--再谈查询

IBatis.Net学习笔记(四)--再谈查询

时间:2011-05-21  来源:awp110

在上一篇文章中我提到了三种方式,都是各有利弊:
第一种方式当数据关联很多的情况下,实体类会很复杂;
第二种方式比较灵活,但是不太符合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="[email protected]"/>
      <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条的查询语句了。
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载