-
Notifications
You must be signed in to change notification settings - Fork 934
/
Copy pathDetachedQuery.cs
54 lines (50 loc) · 1.26 KB
/
DetachedQuery.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using NHibernate;
namespace NHibernate.Impl
{
/// <summary>
/// Query in "detached mode" where the NHibernate session is not available.
/// </summary>
/// <seealso cref="AbstractDetachedQuery"/>
/// <seealso cref="IDetachedQuery"/>
/// <seealso cref="IQuery"/>
[Serializable]
public class DetachedQuery: AbstractDetachedQuery
{
private readonly string hql;
/// <summary>
/// Create a new instance of <see cref="DetachedQuery"/> for the given query string.
/// </summary>
/// <param name="hql">A hibernate query string</param>
public DetachedQuery(string hql)
{
this.hql = hql;
}
/// <summary>
/// Get the HQL string.
/// </summary>
public string Hql
{
get { return hql; }
}
/// <summary>
/// Get an executable instance of <see cref="IQuery"/>, to actually run the query.
/// </summary>
public override IQuery GetExecutableQuery(ISession session)
{
IQuery result = session.CreateQuery(hql);
SetQueryProperties(result);
return result;
}
/// <summary>
/// Creates a new DetachedQuery that is a deep copy of the current instance.
/// </summary>
/// <returns>The clone.</returns>
public DetachedQuery Clone()
{
DetachedQuery result = new DetachedQuery(hql);
CopyTo(result);
return result;
}
}
}