Using QueryOver projections and aggregates
In some cases, we only need specific properties of an entity. In other cases, we may need the results of an aggregate function, such as average or count. In this recipe, we'll show you how to write QueryOver
queries with projections and aggregates.
Getting ready
Complete the Getting Ready instructions at the beginning of this chapter.
How to do it…
- Add a new folder named
QueryOverProjections
to the project. - Add a new class named
QueryOverAggregateQueries
to the folder, having the following code:using System; using System.Collections.Generic; using System.Linq; using NH4CookbookHelpers.Queries; using NH4CookbookHelpers.Queries.Model; using NHibernate; using NHibernate.Criterion; namespace QueryRecipes.QueryOverProjections ...
Get NHibernate 4.x Cookbook - Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.