forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProperty.cs
279 lines (226 loc) · 6.17 KB
/
Property.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
using System;
using System.Collections;
namespace NHibernate.Criterion
{
/// <summary>
/// A factory for property-specific AbstractCriterion and projection instances
/// </summary>
[Serializable]
public class Property : PropertyProjection
{
internal Property(String propertyName) : base(propertyName)
{
}
public AbstractCriterion Between(Object min, Object max)
{
return Expression.Between(PropertyName, min, max);
}
public AbstractCriterion In(ICollection values)
{
return Expression.In(PropertyName, values);
}
public AbstractCriterion In(Object[] values)
{
return Expression.In(PropertyName, values);
}
public AbstractCriterion Like(Object value)
{
return Expression.Like(PropertyName, value);
}
public AbstractCriterion Like(String value, MatchMode matchMode)
{
return Expression.Like(PropertyName, value, matchMode);
}
public AbstractCriterion Eq(Object value)
{
return Expression.Eq(PropertyName, value);
}
public AbstractCriterion Gt(Object value)
{
return Expression.Gt(PropertyName, value);
}
public AbstractCriterion Lt(Object value)
{
return Expression.Lt(PropertyName, value);
}
public AbstractCriterion Le(Object value)
{
return Expression.Le(PropertyName, value);
}
public AbstractCriterion Ge(Object value)
{
return Expression.Ge(PropertyName, value);
}
public AbstractCriterion EqProperty(Property other)
{
return Expression.EqProperty(PropertyName, other.PropertyName);
}
public AbstractCriterion NotEqProperty(Property other)
{
return Expression.NotEqProperty(PropertyName, other.PropertyName);
}
public AbstractCriterion LeProperty(Property other)
{
return Expression.LeProperty(PropertyName, other.PropertyName);
}
public AbstractCriterion GeProperty(Property other)
{
return Expression.GeProperty(PropertyName, other.PropertyName);
}
public AbstractCriterion LtProperty(Property other)
{
return Expression.LtProperty(PropertyName, other.PropertyName);
}
public AbstractCriterion GtProperty(Property other)
{
return Expression.GtProperty(PropertyName, other.PropertyName);
}
public AbstractCriterion EqProperty(String other)
{
return Expression.EqProperty(PropertyName, other);
}
public AbstractCriterion NotEqProperty(String other)
{
return Expression.NotEqProperty(PropertyName, other);
}
public AbstractCriterion LeProperty(String other)
{
return Expression.LeProperty(PropertyName, other);
}
public AbstractCriterion GeProperty(String other)
{
return Expression.GeProperty(PropertyName, other);
}
public AbstractCriterion LtProperty(String other)
{
return Expression.LtProperty(PropertyName, other);
}
public AbstractCriterion GtProperty(String other)
{
return Expression.GtProperty(PropertyName, other);
}
public AbstractCriterion IsNull()
{
return Expression.IsNull(PropertyName);
}
public AbstractCriterion IsNotNull()
{
return Expression.IsNotNull(PropertyName);
}
public AbstractEmptinessExpression IsEmpty()
{
return Expression.IsEmpty(PropertyName);
}
public AbstractEmptinessExpression IsNotEmpty()
{
return Expression.IsNotEmpty(PropertyName);
}
public CountProjection Count()
{
return Projections.Count(PropertyName);
}
public AggregateProjection Max()
{
return Projections.Max(PropertyName);
}
public AggregateProjection Min()
{
return Projections.Min(PropertyName);
}
public AggregateProjection Avg()
{
return Projections.Avg(PropertyName);
}
public PropertyProjection Group()
{
return Projections.GroupProperty(PropertyName);
}
public Order Asc()
{
return Order.Asc(PropertyName);
}
public Order Desc()
{
return Order.Desc(PropertyName);
}
public static Property ForName(String propertyName)
{
return new Property(propertyName);
}
/// <summary>
/// Get a component attribute of this property
/// </summary>
public Property GetProperty(String propertyName)
{
return ForName(PropertyName + '.' + propertyName);
}
public AbstractCriterion Eq(DetachedCriteria subselect)
{
return Subqueries.PropertyEq(PropertyName, subselect);
}
public AbstractCriterion Ne(DetachedCriteria subselect)
{
return Subqueries.PropertyNe(PropertyName, subselect);
}
public AbstractCriterion Lt(DetachedCriteria subselect)
{
return Subqueries.PropertyLt(PropertyName, subselect);
}
public AbstractCriterion Le(DetachedCriteria subselect)
{
return Subqueries.PropertyLe(PropertyName, subselect);
}
public AbstractCriterion Bt(DetachedCriteria subselect)
{
return Subqueries.PropertyGt(PropertyName, subselect);
}
public AbstractCriterion Ge(DetachedCriteria subselect)
{
return Subqueries.PropertyGe(PropertyName, subselect);
}
public AbstractCriterion NotIn(DetachedCriteria subselect)
{
return Subqueries.PropertyNotIn(PropertyName, subselect);
}
public AbstractCriterion In(DetachedCriteria subselect)
{
return Subqueries.PropertyIn(PropertyName, subselect);
}
public AbstractCriterion EqAll(DetachedCriteria subselect)
{
return Subqueries.PropertyEqAll(PropertyName, subselect);
}
public AbstractCriterion GtAll(DetachedCriteria subselect)
{
return Subqueries.PropertyGtAll(PropertyName, subselect);
}
public AbstractCriterion LtAll(DetachedCriteria subselect)
{
return Subqueries.PropertyLtAll(PropertyName, subselect);
}
public AbstractCriterion LeAll(DetachedCriteria subselect)
{
return Subqueries.PropertyLeAll(PropertyName, subselect);
}
public AbstractCriterion GeAll(DetachedCriteria subselect)
{
return Subqueries.PropertyGeAll(PropertyName, subselect);
}
public AbstractCriterion GtSome(DetachedCriteria subselect)
{
return Subqueries.PropertyGtSome(PropertyName, subselect);
}
public AbstractCriterion LtSome(DetachedCriteria subselect)
{
return Subqueries.PropertyLtSome(PropertyName, subselect);
}
public AbstractCriterion LeSome(DetachedCriteria subselect)
{
return Subqueries.PropertyLeSome(PropertyName, subselect);
}
public AbstractCriterion GeSome(DetachedCriteria subselect)
{
return Subqueries.PropertyGeSome(PropertyName, subselect);
}
}
}