forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCriteriaUtil.cs
32 lines (27 loc) · 974 Bytes
/
CriteriaUtil.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using NHibernate.Transform;
namespace NHibernate
{
/// <summary>
/// Contains static declarations from Criteria interface in Hibernate.
/// </summary>
public sealed class CriteriaUtil
{
/// <summary>
/// Each row of results is an <c>IDictionary</c> from alias to entity instance
/// </summary>
public static readonly IResultTransformer AliasToEntityMap = new AliasToEntityMapResultTransformer();
/// <summary>
/// Each row of results is an instance of the root entity
/// </summary>
public static readonly IResultTransformer RootEntity = new RootEntityResultTransformer();
/// <summary>
/// Each row of results is a distinct instance of the root entity
/// </summary>
public static readonly IResultTransformer DistinctRootEntity = new DistinctRootEntityResultTransformer();
/// <summary>
/// The alias that refers to the "root" entity of the criteria query.
/// </summary>
public const string RootAlias = "this";
}
}