[Missing namespace summary documentation for N:Castle.ActiveRecord.Queries]
Syntax
| C# |
|---|
namespace Castle.ActiveRecord.Queries |
Classes
| Class | Description | |
|---|---|---|
| ActiveRecordCriteriaQuery |
Criteria Query
Note: This query can not be included in a MultiQuery.
the problem is that NHibernate does not have a real CriteriaQuery class
| |
| ActiveRecordMultiQuery |
wrapper for an IMultiQuery that executes a collection of queries.
| |
| CountQuery |
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.
| |
| HqlBasedQuery |
Base class for all HQL or SQL-based queries.
| |
| ProjectionQuery<(Of <ARType>)> |
Default implemenation of ProjectionQuery that returns an Untyped object array tuples
| |
| ProjectionQuery<(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.
| |
| ScalarProjectionQuery<(Of <ARType, TResult>)> |
Perform a scalar projection ( aggeregate ) type of query:
avg, max, count(*), etc.
| |
| ScalarQuery |
Query that return a single result
| |
| ScalarQuery<(Of <T>)> |
Represents a query that can result in a value
of the type T.
| |
| SimpleQuery |
Simple query.
| |
| SimpleQuery<(Of <T>)> |
Represents a query that can result in an array of
objects of the type T.
|
Enumerations
| Enumeration | Description | |
|---|---|---|
| QueryLanguage |
defines the possible query langauges
|