forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNullExpression.cs
84 lines (72 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
using System;
using NHibernate.Engine;
using NHibernate.SqlCommand;
namespace NHibernate.Criterion
{
/// <summary>
/// An <see cref="ICriterion"/> that represents "null" constraint.
/// </summary>
[Serializable]
public class NullExpression : AbstractCriterion
{
private readonly string _propertyName;
private readonly IProjection _projection;
private static readonly TypedValue[] NoValues = Array.Empty<TypedValue>();
/// <summary>
/// Initializes a new instance of the <see cref="NullExpression"/> class.
/// </summary>
/// <param name="projection">The projection.</param>
public NullExpression(IProjection projection)
{
_projection = projection;
}
/// <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)
{
//TODO: add default capacity
SqlStringBuilder sqlBuilder = new SqlStringBuilder();
var columnNames =
CriterionUtil.GetColumnNamesAsSqlStringParts(_propertyName, _projection, criteriaQuery, criteria);
for (int i = 0; i < columnNames.Length; i++)
{
if (i > 0)
{
sqlBuilder.Add(" and ");
}
sqlBuilder.AddObject(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 _projection == null ? NoValues : _projection.GetTypedValues(criteria, criteriaQuery);
}
public override IProjection[] GetProjections()
{
if(_projection != null)
{
return new IProjection[] { _projection };
}
return null;
}
/// <summary></summary>
public override string ToString()
{
return (_projection ?? (object)_propertyName) + " is null";
}
}
}