Criteria API关联查询

如果说HQL查询还有需要了解点SQL语法知识,并不是完全彻底面向对象查询,

那么Criterial API就是完全面向对象的查询方式。

 public IList<Customer> UseCriteriaAPI_GetCustomersWithOrders(DateTime orderDate)
{
return _session.CreateCriteria(typeof(Customer))
.Add(Restrictions.Eq("FirstName", "easy5")) //为本表查询添加查询参数
.CreateCriteria("Orders") //关联查询Order表开始,注意:“Oreders”是类Customer中关联到Order类的属性
.Add(Restrictions.Gt("OrderDate", orderDate))//OrderDate是Order类中的属性,不是数据库表Order的列名,如果是列名就不是面向对象编程了 .List<Customer>();
 }

我们使用CreateCriteria()在关联之间导航,很容易地在实体之间指定约束。

这里第二个CreateCriteria()返回一个ICriteria的新实例,并指向Orders实体的元素。

在查询中子对象使用子CreateCriteria语句,这是因为实体之间的关联我们在映射文件中已经定义好了。

还有一种方法使用CreateAlias()不会创建ICriteria的新实例。

预过滤

使用ICriteria接口的SetResultTransformer(IResultTransformer resultTransformer)方法返回满足特定条件的Customer。上面例子中使用条件查询,观察其生成的SQL语句并没有distinct,这时可以使用NHibernate.Transform命名空间中的方法或者使用NHibernate提供的NHibernate.CriteriaUtil.RootEntity、NHibernate.CriteriaUtil.DistinctRootEntity、NHibernate.CriteriaUtil.AliasToEntityMap静态方法实现预过滤的作用。那么上面的查询应该修改为:

public IList<Customer> UseCriteriaAPI_GetCustomersWithOrders(DateTime orderDate)
{
    return _session.CreateCriteria(typeof(Customer))
        .CreateCriteria("Orders")
        .Add(Restrictions.Gt("OrderDate", orderDate))
        .SetResultTransformer(new NHibernate.Transform.DistinctRootEntityResultTransformer()) //过滤重复项
        .List<Customer>();
}

这个例子从转换结果集的角度实现了我们想要的效果。

投影

调用SetProjection()方法可以实现应用投影到一个查询中。NHibernate.Criterion.Projections是Projection的实例工厂,Projections提供了非常多的方法,看看下面的截图

现在可以条件查询提供的投影来完成上面同样的目的:

public IList<Customer> UseCriteriaAPI_GetDistinctCustomers(DateTime orderDate)

{

IList<int> ids = _session.CreateCriteria(typeof(Customer))

.SetProjection(Projections.Distinct(Projections.ProjectionList()

.Add(Projections.Property("CustomerId"))

)

)

.CreateCriteria("Orders")

.Add(Restrictions.Gt("OrderDate", orderDate))

.List<int>();

return _session.CreateCriteria(typeof(Customer))

.Add(Restrictions.In("CustomerId", ids.ToArray<int>()))

.List<Customer>();

}

我们可以添加若干的投影到投影列表中,例如这个例子我添加一个CustomerId属性值到投影列表中,这个列表中的所有属性值都设置了Distinct投影,第一句返回订单时间在orderDate之后所有顾客Distinct的CustomerId,第二句根据返回的CustomerId查询顾客列表。达到上面的目的。这时发现其生成的SQL语句中有distinct。我们使用投影可以很容易的组合我们需要的各种方法。

范例:

  #region CriterialAPI 查询

         public IList<Customer> GetEntitysByDateTimeCriterialApi(DateTime dateTime)
{
IList<Customer> result = null;
ISession session = _sessionManager.GetSession(); result = session.CreateCriteria(typeof(Customer))
.CreateCriteria("Orders")
.Add(Restrictions.Gt("OrderDate", dateTime))
.List<Customer>(); return result;
} /// <summary>
/// 利用CreiteriaAPI进行的IN关键字的查询测试
/// </summary>
public IList<Customer> UseCreiteriaAPI_IN_Query()
{
ISession session = _sessionManager.GetSession();
// return session.CreateCriteria(typeof(Customer)).CreateCriteria("Orders").Add(Restrictions.Between("OrderDate", startDate, endDate))
// .List<Customer>(); object[] firstnames = { "zhang", "li" };
return session.CreateCriteria(typeof(Customer))
.Add(Restrictions.In("FirstName", firstnames))
.List<Customer>(); //return null;
} /// <summary>
/// 利用CreiteriaAPI进行的Or关键字的查询测试
/// </summary>
public IList<Customer> UseCreiteriaAPI_Or_Query()
{
ISession session = _sessionManager.GetSession();
String[] firstnames = { "zhang", "li" };
return session.CreateCriteria(typeof(Customer))
.Add(Restrictions.Or(Restrictions.Eq("FirstName", "zhang"), Restrictions.Eq("FirstName", "li")))
.List<Customer>();
} //CriteriaAPI的预过滤测试
public IList<Customer> UseCriteriaAPI_GetCustomersWithOrders(DateTime orderDate)
{
ISession session = _sessionManager.GetSession(); return session.CreateCriteria(typeof(Customer))
.CreateCriteria("Orders")
.Add(Restrictions.Gt("OrderDate", orderDate))
.SetResultTransformer(new NHibernate.Transform.DistinctRootEntityResultTransformer()) //Distinct--过滤重复项 .List<Customer>();
} //CriteriaAPI的Projection投影测试
public IList<Customer> UseCriteriaAPI_GetDistinctCustomers(DateTime orderDate)
{
ISession session = _sessionManager.GetSession(); IList<int> ids = session.CreateCriteria(typeof(Customer))
.SetProjection(Projections.Distinct(Projections.ProjectionList().Add(Projections.Property("CustomerId"))
))
.CreateCriteria("Orders")
.Add(Restrictions.Gt("OrderDate", orderDate))
.List<int>(); return session.CreateCriteria(typeof(Customer))
.Add(Restrictions.In("CustomerId", ids.ToArray<int>()))
.List<Customer>();
} //CriteriaAPI的Projection投影测试
public IList<Object[]> UseCriteriaAPI_GetDistinctCustomers2()
{
ISession session = _sessionManager.GetSession(); return session.CreateCriteria(typeof(Customer))
.SetProjection(Projections.ProjectionList()
.Add(Projections.Property("FirstName")).Add(Projections.Property("LastName")))
.List<Object[]>(); } #endregion

动态查询---关联查询:

         public IList<Customer> UseCriteriaApiAdvQuery(String firstName,
String lastName,
DateTime dateTime)
{
ICriteria criteria = _session.CreateCriteria("Customer");
if (null != firstName)
{
criteria.Add(Restrictions.Eq("FirstName", firstName));
}
if (null != lastName)
{
criteria.Add(Restrictions.Eq("LastName", lastName));
} if (null != dateTime)
{
//关联查询Order
// 注意:不是criteria.CreateCriteria("Order"),如果是,会抛异常:
//{"could not resolve property: Order of: Model.Customer"}
//而是criteria.CreateCriteria("Orders"),Orders是Customer类在关联的Order类的属性
criteria.CreateCriteria("Orders").Add(Restrictions.Eq("OrderDate", dateTime));
} return criteria.List<Customer>();
} 测试代码: [TestMethod]
public void TestUseCriteriaApiADvQuery()
{
CustomerService customerService = new CustomerService();
OrderService orderService = new OrderService(); Customer customer = new Customer()
{
FirstName = "Test",
LastName = "TestUseCriteriaApiADvQuery",
Age =
}; Order order1 = new Order()
{
OrderDate = DateTime.Now,
Customer = customer
}; customer.Orders.Add(order1);
customerService.Add(customer); Assert.IsNotNull(customerService.Find(customer.CustomerId));
Assert.IsNotNull(orderService.Find(order1.OrderId)); IList<Customer> customers =
customerService.UseCriteriaApiAdvQuery(customer.FirstName,
customer.LastName, order1.OrderDate); Assert.IsTrue(customers.Count > );
}

动态查询---模糊查询:

        #region CriterialAPI 动态+模糊查询

        public IList<Customer> UseCriteriaApiLikeQuery(String firstName,
String lastName)
{
ICriteria criteria = _session.CreateCriteria("Customer");
if (null != firstName)
{
//方式一:用原生的匹配字符,如:%
criteria.Add(Restrictions.Like("FirstName", "%" + firstName +"%"));
}
if (null != lastName)
{
//方式二:用MatchMode
criteria.Add(Restrictions.Like("LastName", lastName, MatchMode.Anywhere));
} return criteria.List<Customer>();
} #endregion 测试代码: #region 测试CriteriaAPI查询--动态 + 模糊查询 [TestMethod]
public void TestUseCriteriaApiLikeQuery()
{
CustomerService customerService = new CustomerService();
OrderService orderService = new OrderService(); Customer customer = new Customer()
{
FirstName = "Test",
LastName = "TestUseCriteriaApiLikeQuery",
Age =
}; Order order1 = new Order()
{
OrderDate = DateTime.Now,
Customer = customer
}; customer.Orders.Add(order1);
customerService.Add(customer); Assert.IsNotNull(customerService.Find(customer.CustomerId));
Assert.IsNotNull(orderService.Find(order1.OrderId)); IList<Customer> customers =
customerService.UseCriteriaApiLikeQuery(null,
"CriteriaApiLike"); Assert.IsTrue(customers.Count > );
} #endregion

排序:

        /// <summary>
/// 模糊查询+排序
/// </summary>
/// <param name="firstName"></param>
/// <param name="lastName"></param>
/// <returns></returns>
public IList<Customer> UseCriteriaApiLikeQueryAndDescOrder(String firstName,
String lastName)
{
ICriteria criteria = _session.CreateCriteria("Customer");
if (null != firstName)
{
//方式一:用原生的匹配字符,如:%
criteria.Add(Restrictions.Like("FirstName", "%" + firstName +"%"));
}
if (null != lastName)
{
//方式二:用MatchMode
criteria.Add(Restrictions.Like("LastName", lastName, MatchMode.Anywhere))
.AddOrder(NHibernate.Criterion.Order.Desc("CustomerId"));
} return criteria.List<Customer>();
} #endregion 测试代码: [TestMethod]
public void TestUseCriteriaApiLikeQueryAndDescOrder()
{
CustomerService customerService = new CustomerService();
OrderService orderService = new OrderService(); Customer customer1 = new Customer()
{
FirstName = "Test",
LastName = "TestUseCriteriaApiLikeQuery1",
Age =
}; Customer customer2 = new Customer()
{
FirstName = "Test",
LastName = "TestUseCriteriaApiLikeQuery2",
Age =
}; customerService.Add(customer1);
customerService.Add(customer2);
Assert.IsNotNull(customerService.Find(customer1.CustomerId));
Assert.IsNotNull(customerService.Find(customer2.CustomerId)); IList<Customer> customers =
customerService.UseCriteriaApiLikeQueryAndDescOrder(null, "CriteriaApiLike"); Assert.IsTrue(customer1.CustomerId < customer2.CustomerId);
Assert.IsTrue(customers[].LastName== customer2.LastName);
}

01-04-03【Nhibernate (版本3.3.1.4000) 出入江湖】Criteria API关联查询的更多相关文章

  1. 01-08-05【Nhibernate (版本3.3.1.4000) 出入江湖】NHibernate二级缓存:第三方MemCache缓存

    一.准备工作 [1]根据操作系统(位数)选择下载相应版本的MemCache, MemCache的下载和安装,参看: http://www.cnblogs.com/easy5weikai/p/37606 ...

  2. 01-03-02-2【Nhibernate (版本3.3.1.4000) 出入江湖】CRUP操作-Save方法的一些问题

    此文由于当时不知道NHibernate的Sava方法不是更新操作,不知道Save就是Add,造成如下荒唐的求证过程,但结论是对的 ,可报废此文,特此声明. NHibernate--Save方法: Cu ...

  3. 01-07-01【Nhibernate (版本3.3.1.4000) 出入江湖】并发控制

    Nhibernate 并发控制 [1]悲观并发控制 正在使用数据的操作,加上锁,使用完后解锁释放资源. 使用场景:数据竞争激烈,锁的成本低于回滚事务的成本 缺点:阻塞,可能死锁 [2]乐观并发控制: ...

  4. 01-08-03【Nhibernate (版本3.3.1.4000) 出入江湖】二级缓存:NHibernate自带的HashtableProvider之缓存管理

    http://www.cnblogs.com/lyj/archive/2008/11/28/1343418.html 管理NHibernate二级缓存 NHibernate二级缓存由ISessionF ...

  5. 01-08-04【Nhibernate (版本3.3.1.4000) 出入江湖】二级缓存:NHibernate自带的HashtableProvider之命名缓存

    http://www.cnblogs.com/lyj/archive/2008/11/28/1343418.html 可以在映射文件中定义命名查询,<query>元素提供了很多属性,可以用 ...

  6. 01-08-02【Nhibernate (版本3.3.1.4000) 出入江湖】二级缓存:NHibernate自带的HashtableProvider

    第一步骤:hibernate.cfg.xml文件补上如下配置: <?xml version="1.0" encoding="utf-8"?> < ...

  7. 01-08-01【Nhibernate (版本3.3.1.4000) 出入江湖】NHibernate中的一级缓存

    缓存的范围? 1.事务范围 事务范围的缓存只能被当前事务访问,每个事务都有各自的缓存,缓存内的数据通常采用相互关联的对象形式.缓存的生命周期依赖于事务的生命周期,只有当事务结束时,缓存的生命周期才会结 ...

  8. 01-08-01【Nhibernate (版本3.3.1.4000) 出入江湖】NHibernate中的三种状态

    以下属于不明来源资料: 引入 在程序运行过程中使用对象的方式对数据库进行操作,这必然会产生一系列的持久化类的实例对象.这些对象可能是刚刚创建并准备存储的,也可能是从数据库中查询的,为了区分这些对象,根 ...

  9. 01-06-01【Nhibernate (版本3.3.1.4000) 出入江湖】事务

    Nhibernate事务的使用: public void Add(Customer customer) { ISession session = _sessionManager.GetSession( ...

随机推荐

  1. ubuntu 12.04 安装 codeblock 12.11

      原文地址:http://qtlinux.blog.51cto.com/3052744/1136779 参考文章:http://blog.csdn.net/dszsy1990/article/det ...

  2. hdu 2955 Robberies 0-1背包/概率初始化

    /*Robberies Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total S ...

  3. picLazyLoad 图片延时加载,包含背景图片

    /** * picLazyLoad 图片延时加载,包含背景图片 * $(img).picLazyLoad({...}) * data-original 预加载图片地址 * alon */ ;(func ...

  4. js----方法是否加括号的问题

    在我们js编写程序的时候,我们会写很多函数然后调用它们,那么这些函数调用的时候什么时候加()什么时候不加()?记住以下几个要点. (1)函数做参数时都不要括号. function fun(e) { a ...

  5. Redis 一:安装篇

    .安装环境,虚拟机 + centos6. PS::前提已经安装了yum的情况下 第一步:安装 mkdir /usr/redis 新建redis目录 cd /usr/redis 进入目录 wget ht ...

  6. Delphi XE5教程3:实例程序

    内容源自Delphi XE5 UPDATE 2官方帮助<Delphi Reference>,本人水平有限,欢迎各位高人修正相关错误! 也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者 ...

  7. GIS论文翻译问题

    1 在sci库中输入关键词,搜索一篇相关的英文。看看专业词汇怎么翻译。做个记录 2打开ArcGIS中文online和英文online帮助文档。在中文帮助中搜索中文。找到相应的位置,再切换到英文的版本中 ...

  8. IOS开发之──应用之间调用(1)

    iphone应用之间调用步骤: 1)在plist文件中,注册对外接口 在xcode group&files 里面,展开 resources选择<app>info.plist 鼠标右 ...

  9. 从OGRE,GAMEPLAY3D,COCOS2D-X看开源

    OGRE,大家都很熟悉咯. 说到这一点真的有点好笑,我见过很多人说认识OGRE,但是却不知道D3D和OPENGL是什么东东的,可能是我的笑点真的很低,反正是莫名喜感.前天在COCOS2D-X的一个群里 ...

  10. Android-Empty-Layout:展示不同类型的页面布局,用于视图是空的时候

    Android-Empty-Layout:这个布局可以作用在Listview,Gridview,用于显示数据的是空的时候,可以提示友好的页面.这库可以显示页面出错,页面加载,页面是空. 加载的动画页面 ...