forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNullExpression.cs
66 lines (55 loc) · 1.58 KB
/
NullExpression.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
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using System.Collections.Generic;
using NHibernate.Engine;
using NHibernate.SqlCommand;
namespace NHibernate.Expression
{
/// <summary>
/// An <see cref="ICriterion"/> that represents "null" constraint.
/// </summary>
[Serializable]
public class NullExpression : AbstractCriterion
{
private readonly string _propertyName;
private static readonly TypedValue[] NoValues = new TypedValue[0];
/// <summary>
/// Initialize a new instance of the <see cref="NotNullExpression" /> class for a named
/// Property that should be null.
/// </summary>
/// <param name="propertyName">The name of the Property in the class.</param>
public NullExpression(string propertyName)
{
_propertyName = propertyName;
}
public override SqlString ToSqlString(ICriteria criteria, ICriteriaQuery criteriaQuery, IDictionary<string, IFilter> enabledFilters)
{
//TODO: add default capacity
SqlStringBuilder sqlBuilder = new SqlStringBuilder();
string[] columnNames = criteriaQuery.GetColumnsUsingProjection(criteria, _propertyName);
for (int i = 0; i < columnNames.Length; i++)
{
if (i > 0)
{
sqlBuilder.Add(" and ");
}
sqlBuilder.Add(columnNames[i])
.Add(" is null");
}
if (columnNames.Length > 1)
{
sqlBuilder.Insert(0, "(");
sqlBuilder.Add(")");
}
return sqlBuilder.ToSqlString();
}
public override TypedValue[] GetTypedValues(ICriteria criteria, ICriteriaQuery criteriaQuery)
{
return NoValues;
}
/// <summary></summary>
public override string ToString()
{
return _propertyName + " is null";
}
}
}