forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIDetachedQuery.cs
463 lines (404 loc) · 20.4 KB
/
IDetachedQuery.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
using System;
using System.Collections;
using NHibernate.Transform;
using NHibernate.Type;
namespace NHibernate
{
/// <summary>
/// Interface to create queries in "detached mode" where the NHibernate session is not available.
/// All methods have the same semantics as the corresponding methods of the <see cref="IQuery"/> interface.
/// </summary>
public interface IDetachedQuery
{
/// <summary>
/// Get an executable instance of <see cref="IQuery"/>,
/// to actually run the query.</summary>
IQuery GetExecutableQuery(ISession session);
/// <summary>
/// Set the maximum number of rows to retrieve.
/// </summary>
/// <param name="maxResults">The maximum number of rows to retrieve.</param>
IDetachedQuery SetMaxResults(int maxResults);
/// <summary>
/// Sets the first row to retrieve.
/// </summary>
/// <param name="firstResult">The first row to retrieve.</param>
IDetachedQuery SetFirstResult(int firstResult);
/// <summary>
/// Enable caching of this query result set.
/// </summary>
/// <param name="cacheable">Should the query results be cacheable?</param>
IDetachedQuery SetCacheable(bool cacheable);
/// Set the name of the cache region.
/// <param name="cacheRegion">The name of a query cache region, or <see langword="null" />
/// for the default query cache</param>
IDetachedQuery SetCacheRegion(string cacheRegion);
/// <summary>
/// Entities retrieved by this query will be loaded in
/// a read-only mode where Hibernate will never dirty-check
/// them or make changes persistent.
/// </summary>
/// <param name="readOnly">Enable/Disable read -only mode</param>
IDetachedQuery SetReadOnly(bool readOnly);
/// <summary>
/// Set a timeout for the underlying ADO.NET query.
/// </summary>
/// <param name="timeout">The timeout in seconds.</param>
/// <returns><see langword="this" /> (for method chaining).</returns>
IDetachedQuery SetTimeout(int timeout);
/// <summary> Set a fetch size for the underlying ADO query.</summary>
/// <param name="fetchSize">the fetch size </param>
IDetachedQuery SetFetchSize(int fetchSize);
/// <summary>
/// Set the lockmode for the objects identified by the
/// given alias that appears in the <c>FROM</c> clause.
/// </summary>
/// <param name="alias">alias a query alias, or <c>this</c> for a collection filter</param>
/// <param name="lockMode"></param>
void SetLockMode(string alias, LockMode lockMode);
/// <summary> Add a comment to the generated SQL.</summary>
/// <param name="comment">a human-readable string </param>
IDetachedQuery SetComment(string comment);
/// <summary>
/// Bind a value to an indexed parameter.
/// </summary>
/// <param name="position">Position of the parameter in the query, numbered from <c>0</c></param>
/// <param name="val">The possibly null parameter value</param>
/// <param name="type">The Hibernate type</param>
IDetachedQuery SetParameter(int position, object val, IType type);
/// <summary>
/// Bind a value to a named query parameter
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">The possibly null parameter value</param>
/// <param name="type">The NHibernate <see cref="IType"/>.</param>
IDetachedQuery SetParameter(string name, object val, IType type);
/// <summary>
/// Bind a value to an indexed parameter, guessing the Hibernate type from
/// the class of the given object.
/// </summary>
/// <param name="position">The position of the parameter in the query, numbered from <c>0</c></param>
/// <param name="val">The non-null parameter value</param>
IDetachedQuery SetParameter(int position, object val);
/// <summary>
/// Bind a value to a named query parameter, guessing the NHibernate <see cref="IType"/>
/// from the class of the given object.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">The non-null parameter value</param>
IDetachedQuery SetParameter(string name, object val);
/// <summary>
/// Bind multiple values to a named query parameter. This is useful for binding a list
/// of values to an expression such as <c>foo.bar in (:value_list)</c>
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="vals">A collection of values to list</param>
/// <param name="type">The Hibernate type of the values</param>
IDetachedQuery SetParameterList(string name, IEnumerable vals, IType type);
/// <summary>
/// Bind multiple values to a named query parameter, guessing the Hibernate
/// type from the class of the first object in the collection. This is useful for binding a list
/// of values to an expression such as <c>foo.bar in (:value_list)</c>
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="vals">A collection of values to list</param>
IDetachedQuery SetParameterList(string name, IEnumerable vals);
/// <summary>
/// Bind the property values of the given object to named parameters of the query,
/// matching property names with parameter names and mapping property types to
/// Hibernate types using heuristics.
/// </summary>
/// <param name="obj">Any POCO</param>
IDetachedQuery SetProperties(object obj);
/// <summary>
/// Bind an instance of a <see cref="string" /> to an indexed parameter
/// using an NHibernate <see cref="AnsiStringType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="string"/>.</param>
IDetachedQuery SetAnsiString(int position, string val);
/// <summary>
/// Bind an instance of a <see cref="string" /> to a named parameter
/// using an NHibernate <see cref="AnsiStringType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="string"/>.</param>
IDetachedQuery SetAnsiString(string name, string val);
/// <summary>
/// Bind an instance of a <see cref="byte" /> array to an indexed parameter
/// using an NHibernate <see cref="BinaryType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="byte"/> array.</param>
IDetachedQuery SetBinary(int position, byte[] val);
/// <summary>
/// Bind an instance of a <see cref="byte" /> array to a named parameter
/// using an NHibernate <see cref="BinaryType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="byte"/> array.</param>
IDetachedQuery SetBinary(string name, byte[] val);
/// <summary>
/// Bind an instance of a <see cref="bool" /> to an indexed parameter
/// using an NHibernate <see cref="BooleanType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="bool"/>.</param>
IDetachedQuery SetBoolean(int position, bool val);
/// <summary>
/// Bind an instance of a <see cref="bool" /> to a named parameter
/// using an NHibernate <see cref="BooleanType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="bool"/>.</param>
IDetachedQuery SetBoolean(string name, bool val);
/// <summary>
/// Bind an instance of a <see cref="byte" /> to an indexed parameter
/// using an NHibernate <see cref="ByteType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="byte"/>.</param>
IDetachedQuery SetByte(int position, byte val);
/// <summary>
/// Bind an instance of a <see cref="byte" /> to a named parameter
/// using an NHibernate <see cref="ByteType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="byte"/>.</param>
IDetachedQuery SetByte(string name, byte val);
/// <summary>
/// Bind an instance of a <see cref="char" /> to an indexed parameter
/// using an NHibernate <see cref="CharType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="char"/>.</param>
IDetachedQuery SetCharacter(int position, char val);
/// <summary>
/// Bind an instance of a <see cref="char" /> to a named parameter
/// using an NHibernate <see cref="CharType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="char"/>.</param>
IDetachedQuery SetCharacter(string name, char val);
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to an indexed parameter
/// using an NHibernate <see cref="DateTimeType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
/// <remarks>Since v5.0, does no more cut fractional seconds. Use <see cref="SetDateTimeNoMs(int, DateTime)" />
/// for this</remarks>
IDetachedQuery SetDateTime(int position, DateTime val);
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to a named parameter
/// using an NHibernate <see cref="DateTimeType"/>.
/// </summary>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
/// <param name="name">The name of the parameter</param>
/// <remarks>Since v5.0, does no more cut fractional seconds. Use <see cref="SetDateTimeNoMs(string, DateTime)" />
/// for this</remarks>
IDetachedQuery SetDateTime(string name, DateTime val);
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to an indexed parameter
/// using an NHibernate <see cref="DateTimeNoMsType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
IDetachedQuery SetDateTimeNoMs(int position, DateTime val);
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to a named parameter
/// using an NHibernate <see cref="DateTimeNoMsType"/>.
/// </summary>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
/// <param name="name">The name of the parameter</param>
IDetachedQuery SetDateTimeNoMs(string name, DateTime val);
/// <summary>
/// Bind an instance of a <see cref="Decimal" /> to an indexed parameter
/// using an NHibernate <see cref="DecimalType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="Decimal"/>.</param>
IDetachedQuery SetDecimal(int position, decimal val);
/// <summary>
/// Bind an instance of a <see cref="Decimal" /> to a named parameter
/// using an NHibernate <see cref="DecimalType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="Decimal"/>.</param>
IDetachedQuery SetDecimal(string name, decimal val);
/// <summary>
/// Bind an instance of a <see cref="Double" /> to an indexed parameter
/// using an NHibernate <see cref="DoubleType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="Double"/>.</param>
IDetachedQuery SetDouble(int position, double val);
/// <summary>
/// Bind an instance of a <see cref="Double" /> to a named parameter
/// using an NHibernate <see cref="DoubleType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="Double"/>.</param>
IDetachedQuery SetDouble(string name, double val);
/// <summary>
/// Bind an instance of a mapped persistent class to an indexed parameter.
/// </summary>
/// <param name="position">Position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a persistent class</param>
IDetachedQuery SetEntity(int position, object val);
/// <summary>
/// Bind an instance of a mapped persistent class to a named parameter.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a persistent class</param>
IDetachedQuery SetEntity(string name, object val);
/// <summary>
/// Bind an instance of a persistent enumeration class to an indexed parameter
/// using an NHibernate <see cref="PersistentEnumType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a persistent enumeration</param>
IDetachedQuery SetEnum(int position, Enum val);
/// <summary>
/// Bind an instance of a persistent enumeration class to a named parameter
/// using an NHibernate <see cref="PersistentEnumType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a persistent enumeration</param>
IDetachedQuery SetEnum(string name, Enum val);
/// <summary>
/// Bind an instance of a <see cref="Int16" /> to an indexed parameter
/// using an NHibernate <see cref="Int16Type"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="Int16"/>.</param>
IDetachedQuery SetInt16(int position, short val);
/// <summary>
/// Bind an instance of a <see cref="Int16" /> to a named parameter
/// using an NHibernate <see cref="Int16Type"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="Int16"/>.</param>
IDetachedQuery SetInt16(string name, short val);
/// <summary>
/// Bind an instance of a <see cref="Int32" /> to an indexed parameter
/// using an NHibernate <see cref="Int32Type"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="Int32"/>.</param>
IDetachedQuery SetInt32(int position, int val);
/// <summary>
/// Bind an instance of a <see cref="Int32" /> to a named parameter
/// using an NHibernate <see cref="Int32Type"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="Int32"/>.</param>
IDetachedQuery SetInt32(string name, int val);
/// <summary>
/// Bind an instance of a <see cref="Int64" /> to an indexed parameter
/// using an NHibernate <see cref="Int64Type"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="Int64"/>.</param>
IDetachedQuery SetInt64(int position, long val);
/// <summary>
/// Bind an instance of a <see cref="Int64" /> to a named parameter
/// using an NHibernate <see cref="Int64Type"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="Int64"/>.</param>
IDetachedQuery SetInt64(string name, long val);
/// <summary>
/// Bind an instance of a <see cref="Single" /> to an indexed parameter
/// using an NHibernate <see cref="SingleType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="Single"/>.</param>
IDetachedQuery SetSingle(int position, float val);
/// <summary>
/// Bind an instance of a <see cref="Single" /> to a named parameter
/// using an NHibernate <see cref="SingleType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="Single"/>.</param>
IDetachedQuery SetSingle(string name, float val);
/// <summary>
/// Bind an instance of a <see cref="String" /> to an indexed parameter
/// using an NHibernate <see cref="StringType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="String"/>.</param>
IDetachedQuery SetString(int position, string val);
/// <summary>
/// Bind an instance of a <see cref="String" /> to a named parameter
/// using an NHibernate <see cref="StringType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="String"/>.</param>
IDetachedQuery SetString(string name, string val);
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to an indexed parameter
/// using an NHibernate <see cref="DateTimeType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
IDetachedQuery SetTime(int position, DateTime val);
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to a named parameter
/// using an NHibernate <see cref="DateTimeType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
IDetachedQuery SetTime(string name, DateTime val);
// Obsolete since v5.0
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to an indexed parameter
/// using an NHibernate <see cref="TimestampType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
[Obsolete("Use SetDateTime instead.")]
IDetachedQuery SetTimestamp(int position, DateTime val);
// Obsolete since v5.0
/// <summary>
/// Bind an instance of a <see cref="DateTime" /> to a named parameter
/// using an NHibernate <see cref="TimestampType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">A non-null instance of a <see cref="DateTime"/>.</param>
[Obsolete("Use SetDateTime instead.")]
IDetachedQuery SetTimestamp(string name, DateTime val);
/// <summary>
/// Bind an instance of a <see cref="Guid" /> to a named parameter
/// using an NHibernate <see cref="GuidType"/>.
/// </summary>
/// <param name="position">The position of the parameter in the query string, numbered from <c>0</c></param>
/// <param name="val">An instance of a <see cref="Guid"/>.</param>
IDetachedQuery SetGuid(int position, Guid val);
/// <summary>
/// Bind an instance of a <see cref="Guid" /> to a named parameter
/// using an NHibernate <see cref="GuidType"/>.
/// </summary>
/// <param name="name">The name of the parameter</param>
/// <param name="val">An instance of a <see cref="Guid"/>.</param>
IDetachedQuery SetGuid(string name, Guid val);
/// <summary>
/// Override the current session flush mode, just for this query.
/// </summary>
IDetachedQuery SetFlushMode(FlushMode flushMode);
/// <summary>
/// Set a strategy for handling the query results. This can be used to change
/// "shape" of the query result.
/// </summary>
IDetachedQuery SetResultTransformer(IResultTransformer resultTransformer);
/// <summary>
/// Set the value to ignore unknown parameters names.
/// </summary>
/// <param name="ignoredUnknownNamedParameters">True to ignore unknown parameters names.</param>
IDetachedQuery SetIgnoreUknownNamedParameters(bool ignoredUnknownNamedParameters);
/// <summary> Override the current session cache mode, just for this query. </summary>
/// <param name="cacheMode">The cache mode to use. </param>
/// <returns> this (for method chaining) </returns>
IDetachedQuery SetCacheMode(CacheMode cacheMode);
}
}