forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotNullExpression.cs
87 lines (73 loc) · 2.13 KB
/
NotNullExpression.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
85
86
87
using System;
using NHibernate.Engine;
using NHibernate.SqlCommand;
namespace NHibernate.Criterion
{
/// <summary>
/// An <see cref="ICriterion"/> that represents "not null" constraint.
/// </summary>
[Serializable]
public class NotNullExpression : AbstractCriterion
{
private readonly string _propertyName;
private IProjection _projection;
/// <summary>
/// Initializes a new instance of the <see cref="NotNullExpression"/> class.
/// </summary>
/// <param name="projection">The projection.</param>
public NotNullExpression(IProjection projection)
{
_projection = projection;
}
private static readonly TypedValue[] NoValues = Array.Empty<TypedValue>();
/// <summary>
/// Initialize a new instance of the <see cref="NotNullExpression" /> class for a named
/// Property that should not be null.
/// </summary>
/// <param name="propertyName">The name of the Property in the class.</param>
public NotNullExpression(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);
bool opNeeded = false;
for (int i = 0; i < columnNames.Length; i++)
{
if (opNeeded)
{
sqlBuilder.Add(" or ");
}
opNeeded = true;
sqlBuilder.AddObject(columnNames[i])
.Add(" is not 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;
}
public override string ToString()
{
return (_projection ?? (object)_propertyName) + " is not null";
}
}
}