[Missing namespace summary documentation for N:Castle.ActiveRecord.Queries]

Syntax

C#
namespace Castle.ActiveRecord.Queries

Classes

  ClassDescription
Public classActiveRecordCriteriaQuery
Criteria Query Note: This query can not be included in a MultiQuery. the problem is that NHibernate does not have a real CriteriaQuery class
Public classActiveRecordMultiQuery
wrapper for an IMultiQuery that executes a collection of queries.
Public classCountQuery
Query the database for a count (using COUNT(*) ) of all the entites of the specified type. Optionally using a where clause; Note: If Criteria are used, this query can not be included in a MultiQuery.
Public classHqlBasedQuery
Base class for all HQL or SQL-based queries.
Public classProjectionQuery<(Of <ARType>)>
Default implemenation of ProjectionQuery that returns an Untyped object array tuples
Public classProjectionQuery<(Of <ARType, TResultItem>)>
Performs a projected selection from an entity, lifting only the required fields. Similar to SELECT Id,Name FROM MyTable instead of selecting everything. It is possible to combine this with grouping.
Public classScalarProjectionQuery<(Of <ARType, TResult>)>
Perform a scalar projection ( aggeregate ) type of query: avg, max, count(*), etc.
Public classScalarQuery
Query that return a single result
Public classScalarQuery<(Of <T>)>
Represents a query that can result in a value of the type T.
Public classSimpleQuery
Simple query.
Public classSimpleQuery<(Of <T>)>
Represents a query that can result in an array of objects of the type T.

Enumerations

  EnumerationDescription
Public enumerationQueryLanguage
defines the possible query langauges