forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISession.cs
763 lines (691 loc) · 30.6 KB
/
ISession.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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
using System;
using System.Collections;
using System.Data;
using NHibernate.Engine;
using NHibernate.Stat;
using NHibernate.Type;
namespace NHibernate
{
/// <summary>
/// The main runtime interface between a Java application and Hibernate. This is the central
/// API class abstracting the notion of a persistence service.
/// </summary>
/// <remarks>
/// <para>
/// The lifecycle of a <c>ISession</c> is bounded by the beginning and end of a logical
/// transaction. (Long transactions might span several database transactions.)
/// </para>
/// <para>
/// The main function of the <c>ISession</c> is to offer create, find and delete operations
/// for instances of mapped entity classes. Instances may exist in one of two states:
/// <list>
/// <item>transient: not associated with any <c>ISession</c></item>
/// <item>persistent: associated with a <c>ISession</c></item>
/// </list>
/// </para>
/// <para>
/// Transient instances may be made persistent by calling <c>Save()</c>, <c>Insert()</c>,
/// or <c>Update()</c>. Persistent instances may be made transient by calling <c>Delete()</c>.
/// Any instance returned by a <c>List()</c>, <c>Iterate()</c>, <c>Load()</c>, or <c>Create</c>
/// method is persistent.
/// </para>
/// <para>
/// <c>Save()</c> results in an SQL <c>INSERT</c>, <c>Delete()</c>
/// in an SQL <c>DELETE</c> and <c>Update()</c> in an SQL <c>UPDATE</c>. Changes to
/// <em>persistent</em> instances are deteced at flush time and also result in an SQL
/// <c>UPDATE</c>.
/// </para>
/// <para>
/// It is not intended that implementors be threadsafe. Instead each thread/transaction should obtain
/// its own instance from an <c>ISessionFactory</c>.
/// </para>
/// <para>
/// A <c>ISession</c> instance is serializable if its persistent classes are serializable
/// </para>
/// <para>
/// A typical transaction should use the following idiom:
/// <code>
/// ISession sess = factory.OpenSession();
/// ITransaction tx;
/// try {
/// tx = sess.BeginTransaction();
/// //do some work
/// ...
/// tx.Commit();
/// } catch (Exception e) {
/// if (tx != null) tx.Rollback();
/// throw;
/// } finally {
/// sess.Close();
/// }
/// </code>
/// </para>
/// <para>
/// If the <c>ISession</c> throws an exception, the transaction must be rolled back and the session
/// discarded. The internal state of the <c>ISession</c> might not be consistent with the database
/// after the exception occurs.
/// </para>
/// <seealso cref="ISessionFactory"/>
/// </remarks>
public interface ISession : IDisposable
{
/// <summary>
/// Force the <c>ISession</c> to flush.
/// </summary>
/// <remarks>
/// Must be called at the end of a unit of work, before commiting the transaction and closing
/// the session (<c>Transaction.Commit()</c> calls this method). <i>Flushing</i> if the process
/// of synchronising the underlying persistent store with persistable state held in memory.
/// </remarks>
void Flush();
/// <summary>
/// Determines at which points Hibernate automatically flushes the session.
/// </summary>
/// <remarks>
/// For a readonly session, it is reasonable to set the flush mode to <c>FlushMode.Never</c>
/// at the start of the session (in order to achieve some extra performance).
/// </remarks>
FlushMode FlushMode { get; set; }
/// <summary> The current cache mode. </summary>
/// <remarks>
/// Cache mode determines the manner in which this session can interact with
/// the second level cache.
/// </remarks>
CacheMode CacheMode { get;set;}
/// <summary>
/// Get the <see cref="ISessionFactory" /> that created this instance.
/// </summary>
ISessionFactory SessionFactory { get; }
/// <summary>
/// Gets the ADO.NET connection.
/// </summary>
/// <remarks>
/// Applications are responsible for calling commit/rollback upon the connection before
/// closing the <c>ISession</c>.
/// </remarks>
IDbConnection Connection { get; }
/// <summary>
/// Disconnect the <c>ISession</c> from the current ADO.NET connection.
/// </summary>
/// <remarks>
/// If the connection was obtained by Hibernate, close it or return it to the connection
/// pool. Otherwise return it to the application. This is used by applications which require
/// long transactions.
/// </remarks>
/// <returns>The connection provided by the application or <see langword="null" /></returns>
IDbConnection Disconnect();
/// <summary>
/// Obtain a new ADO.NET connection.
/// </summary>
/// <remarks>
/// This is used by applications which require long transactions
/// </remarks>
void Reconnect();
/// <summary>
/// Reconnect to the given ADO.NET connection.
/// </summary>
/// <remarks>This is used by applications which require long transactions</remarks>
/// <param name="connection">An ADO.NET connection</param>
void Reconnect(IDbConnection connection);
/// <summary>
/// End the <c>ISession</c> by disconnecting from the ADO.NET connection and cleaning up.
/// </summary>
/// <remarks>
/// It is not strictly necessary to <c>Close()</c> the <c>ISession</c> but you must
/// at least <c>Disconnect()</c> it.
/// </remarks>
/// <returns>The connection provided by the application or <see langword="null" /></returns>
IDbConnection Close();
/// <summary>
/// Cancel execution of the current query.
/// </summary>
/// <remarks>
/// May be called from one thread to stop execution of a query in another thread.
/// Use with care!
/// </remarks>
void CancelQuery();
/// <summary>
/// Is the <c>ISession</c> still open?
/// </summary>
bool IsOpen { get; }
/// <summary>
/// Is the <c>ISession</c> currently connected?
/// </summary>
bool IsConnected { get; }
/// <summary>
/// Does this <c>ISession</c> contain any changes which must be
/// synchronized with the database? Would any SQL be executed if
/// we flushed this session?
/// </summary>
bool IsDirty();
/// <summary>
/// Return the identifier of an entity instance cached by the <c>ISession</c>
/// </summary>
/// <remarks>
/// Throws an exception if the instance is transient or associated with a different
/// <c>ISession</c>
/// </remarks>
/// <param name="obj">a persistent instance</param>
/// <returns>the identifier</returns>
object GetIdentifier(object obj);
/// <summary>
/// Is this instance associated with this Session?
/// </summary>
/// <param name="obj">an instance of a persistent class</param>
/// <returns>true if the given instance is associated with this Session</returns>
bool Contains(object obj);
/// <summary>
/// Remove this instance from the session cache.
/// </summary>
/// <remarks>
/// Changes to the instance will not be synchronized with the database.
/// This operation cascades to associated instances if the association is mapped
/// with <c>cascade="all"</c> or <c>cascade="all-delete-orphan"</c>.
/// </remarks>
/// <param name="obj">a persistent instance</param>
void Evict(Object obj);
/// <summary>
/// Return the persistent instance of the given entity class with the given identifier,
/// obtaining the specified lock mode.
/// </summary>
/// <param name="theType">A persistent class</param>
/// <param name="id">A valid identifier of an existing persistent instance of the class</param>
/// <param name="lockMode">The lock level</param>
/// <returns>the persistent instance</returns>
object Load(System.Type theType, object id, LockMode lockMode);
/// <summary>
/// Return the persistent instance of the given entity class with the given identifier,
/// assuming that the instance exists.
/// </summary>
/// <remarks>
/// You should not use this method to determine if an instance exists (use a query or
/// <see cref="Get(System.Type, object)" /> instead). Use this only to retrieve an instance
/// that you assume exists, where non-existence would be an actual error.
/// </remarks>
/// <param name="theType">A persistent class</param>
/// <param name="id">A valid identifier of an existing persistent instance of the class</param>
/// <returns>The persistent instance or proxy</returns>
object Load(System.Type theType, object id);
/// <summary>
/// Return the persistent instance of the given entity class with the given identifier,
/// obtaining the specified lock mode.
/// </summary>
/// <typeparam name="T">A persistent class</typeparam>
/// <param name="id">A valid identifier of an existing persistent instance of the class</param>
/// <param name="lockMode">The lock level</param>
/// <returns>the persistent instance</returns>
T Load<T>(object id, LockMode lockMode);
/// <summary>
/// Return the persistent instance of the given entity class with the given identifier,
/// assuming that the instance exists.
/// </summary>
/// <remarks>
/// You should not use this method to determine if an instance exists (use a query or
/// <see cref="Get{T}(object)" /> instead). Use this only to retrieve an instance that you
/// assume exists, where non-existence would be an actual error.
/// </remarks>
/// <typeparam name="T">A persistent class</typeparam>
/// <param name="id">A valid identifier of an existing persistent instance of the class</param>
/// <returns>The persistent instance or proxy</returns>
T Load<T>(object id);
/// <summary>
/// Read the persistent state associated with the given identifier into the given transient
/// instance.
/// </summary>
/// <param name="obj">An "empty" instance of the persistent class</param>
/// <param name="id">A valid identifier of an existing persistent instance of the class</param>
void Load(object obj, object id);
/// <summary>
/// Persist all reachable transient objects, reusing the current identifier
/// values. Note that this will not trigger the Interceptor of the Session.
/// </summary>
/// <param name="obj"></param>
/// <param name="replicationMode"></param>
void Replicate(object obj, ReplicationMode replicationMode);
/// <summary>
/// Persist the given transient instance, first assigning a generated identifier.
/// </summary>
/// <remarks>
/// Save will use the current value of the identifier property if the <c>Assigned</c>
/// generator is used.
/// </remarks>
/// <param name="obj">A transient instance of a persistent class</param>
/// <returns>The generated identifier</returns>
object Save(object obj);
/// <summary>
/// Persist the given transient instance, using the given identifier.
/// </summary>
/// <param name="obj">A transient instance of a persistent class</param>
/// <param name="id">An unused valid identifier</param>
void Save(object obj, object id);
/// <summary>
/// Either <c>Save()</c> or <c>Update()</c> the given instance, depending upon the value of
/// its identifier property.
/// </summary>
/// <remarks>
/// By default the instance is always saved. This behaviour may be adjusted by specifying
/// an <c>unsaved-value</c> attribute of the identifier property mapping
/// </remarks>
/// <param name="obj">A transient instance containing new or updated state</param>
void SaveOrUpdate(object obj);
/// <summary>
/// Update the persistent instance with the identifier of the given transient instance.
/// </summary>
/// <remarks>
/// If there is a persistent instance with the same identifier, an exception is thrown. If
/// the given transient instance has a <see langword="null" /> identifier, an exception will be thrown.
/// </remarks>
/// <param name="obj">A transient instance containing updated state</param>
void Update(object obj);
/// <summary>
/// Update the persistent state associated with the given identifier.
/// </summary>
/// <remarks>
/// An exception is thrown if there is a persistent instance with the same identifier
/// in the current session.
/// </remarks>
/// <param name="obj">A transient instance containing updated state</param>
/// <param name="id">Identifier of persistent instance</param>
void Update(object obj, object id);
/// <summary>
/// Copy the state of the given object onto the persistent object with the same
/// identifier. If there is no persistent instance currently associated with
/// the session, it will be loaded. Return the persistent instance. If the
/// given instance is unsaved or does not exist in the database, save it and
/// return it as a newly persistent instance. Otherwise, the given instance
/// does not become associated with the session.
/// </summary>
/// <param name="obj">a transient instance with state to be copied</param>
/// <returns>an updated persistent instance</returns>
object SaveOrUpdateCopy(object obj);
/// <summary>
/// Copy the state of the given object onto the persistent object with the
/// given identifier. If there is no persistent instance currently associated
/// with the session, it will be loaded. Return the persistent instance. If
/// there is no database row with the given identifier, save the given instance
/// and return it as a newly persistent instance. Otherwise, the given instance
/// does not become associated with the session.
/// </summary>
/// <param name="obj">a persistent or transient instance with state to be copied</param>
/// <param name="id">the identifier of the instance to copy to</param>
/// <returns>an updated persistent instance</returns>
object SaveOrUpdateCopy(object obj, object id);
/// <summary>
/// Remove a persistent instance from the datastore.
/// </summary>
/// <remarks>
/// The argument may be an instance associated with the receiving <c>ISession</c> or a
/// transient instance with an identifier associated with existing persistent state.
/// </remarks>
/// <param name="obj">The instance to be removed</param>
void Delete(object obj);
/// <summary>
/// Execute a query
/// </summary>
/// <param name="query">A query expressed in Hibernate's query language</param>
/// <returns>A distinct list of instances</returns>
/// <remarks>See <see cref="IQuery.List()"/> for implications of <c>cache</c> usage.</remarks>
[Obsolete("Use ISession.CreateQuery().List()")]
IList Find(string query);
/// <summary>
/// Execute a query, binding a value to a "?" parameter in the query string.
/// </summary>
/// <param name="query">The query string</param>
/// <param name="value">A value to be bound to a "?" placeholder</param>
/// <param name="type">The Hibernate type of the value</param>
/// <returns>A distinct list of instances</returns>
/// <remarks>See <see cref="IQuery.List()"/> for implications of <c>cache</c> usage.</remarks>
[Obsolete("Use ISession.CreateQuery().SetXYZ().List()")]
IList Find(string query, object value, IType type);
/// <summary>
/// Execute a query, binding an array of values to a "?" parameters in the query string.
/// </summary>
/// <param name="query">The query string</param>
/// <param name="values">An array of values to be bound to the "?" placeholders</param>
/// <param name="types">An array of Hibernate types of the values</param>
/// <returns>A distinct list of instances</returns>
/// <remarks>See <see cref="IQuery.List()"/> for implications of <c>cache</c> usage.</remarks>
[Obsolete("Use ISession.CreateQuery().SetXYZ().List()")]
IList Find(string query, object[] values, IType[] types);
/// <summary>
/// Execute a query and return the results in an interator.
/// </summary>
/// <remarks>
/// <para>
/// If the query has multiple return values, values will be returned in an array of
/// type <c>object[]</c>.
/// </para>
/// <para>
/// Entities returned as results are initialized on demand. The first SQL query returns
/// identifiers only. So <c>Enumerator()</c> is usually a less efficient way to retrieve
/// object than <c>List()</c>.
/// </para>
/// </remarks>
/// <param name="query">The query string</param>
/// <returns>An enumerator</returns>
[Obsolete("Use ISession.CreateQuery().Enumerable()")]
IEnumerable Enumerable(string query);
/// <summary>
/// Execute a query and return the results in an interator,
/// binding a value to a "?" parameter in the query string.
/// </summary>
/// <remarks>
/// <para>
/// If the query has multiple return values, values will be returned in an array of
/// type <c>object[]</c>.
/// </para>
/// <para>
/// Entities returned as results are initialized on demand. The first SQL query returns
/// identifiers only. So <c>Enumerator()</c> is usually a less efficient way to retrieve
/// object than <c>List()</c>.
/// </para>
/// </remarks>
/// <param name="query">The query string</param>
/// <param name="value">A value to be written to a "?" placeholder in the query string</param>
/// <param name="type">The hibernate type of the value</param>
/// <returns>An enumerator</returns>
[Obsolete("Use ISession.CreateQuery().SetXYZ().Enumerable()")]
IEnumerable Enumerable(string query, object value, IType type);
/// <summary>
/// Execute a query and return the results in an interator,
/// binding the values to "?"s parameters in the query string.
/// </summary>
/// <remarks>
/// <para>
/// If the query has multiple return values, values will be returned in an array of
/// type <c>object[]</c>.
/// </para>
/// <para>
/// Entities returned as results are initialized on demand. The first SQL query returns
/// identifiers only. So <c>Enumerator()</c> is usually a less efficient way to retrieve
/// object than <c>List()</c>.
/// </para>
/// </remarks>
/// <param name="query">The query string</param>
/// <param name="values">A list of values to be written to "?" placeholders in the query</param>
/// <param name="types">A list of hibernate types of the values</param>
/// <returns>An enumerator</returns>
[Obsolete("Use ISession.CreateQuery().SetXYZ().Enumerable()")]
IEnumerable Enumerable(string query, object[] values, IType[] types);
/// <summary>
/// Apply a filter to a persistent collection.
/// </summary>
/// <remarks>
/// A filter is a Hibernate query that may refer to <c>this</c>, the collection element.
/// Filters allow efficient access to very large lazy collections. (Executing the filter
/// does not initialize the collection.)
/// </remarks>
/// <param name="collection">A persistent collection to filter</param>
/// <param name="filter">A filter query string</param>
/// <returns>The resulting collection</returns>
[Obsolete("Use ISession.CreateFilter().List()")]
ICollection Filter(object collection, string filter);
/// <summary>
/// Apply a filter to a persistent collection, binding the given parameter to a "?" placeholder
/// </summary>
/// <remarks>
/// A filter is a Hibernate query that may refer to <c>this</c>, the collection element.
/// Filters allow efficient access to very large lazy collections. (Executing the filter
/// does not initialize the collection.)
/// </remarks>
/// <param name="collection">A persistent collection to filter</param>
/// <param name="filter">A filter query string</param>
/// <param name="value">A value to be written to a "?" placeholder in the query</param>
/// <param name="type">The hibernate type of value</param>
/// <returns>A collection</returns>
[Obsolete("Use ISession.CreateFilter().SetXYZ().List()")]
ICollection Filter(object collection, string filter, object value, IType type);
/// <summary>
/// Apply a filter to a persistent collection, binding the given parameters to "?" placeholders.
/// </summary>
/// <remarks>
/// A filter is a Hibernate query that may refer to <c>this</c>, the collection element.
/// Filters allow efficient access to very large lazy collections. (Executing the filter
/// does not initialize the collection.)
/// </remarks>
/// <param name="collection">A persistent collection to filter</param>
/// <param name="filter">A filter query string</param>
/// <param name="values">The values to be written to "?" placeholders in the query</param>
/// <param name="types">The hibernate types of the values</param>
/// <returns>A collection</returns>
[Obsolete("Use ISession.CreateFilter().SetXYZ().List()")]
ICollection Filter(object collection, string filter, object[] values, IType[] types);
/// <summary>
/// Delete all objects returned by the query.
/// </summary>
/// <param name="query">The query string</param>
/// <returns>Returns the number of objects deleted.</returns>
int Delete(string query);
/// <summary>
/// Delete all objects returned by the query.
/// </summary>
/// <param name="query">The query string</param>
/// <param name="value">A value to be written to a "?" placeholer in the query</param>
/// <param name="type">The hibernate type of value.</param>
/// <returns>The number of instances deleted</returns>
int Delete(string query, object value, IType type);
/// <summary>
/// Delete all objects returned by the query.
/// </summary>
/// <param name="query">The query string</param>
/// <param name="values">A list of values to be written to "?" placeholders in the query</param>
/// <param name="types">A list of Hibernate types of the values</param>
/// <returns>The number of instances deleted</returns>
int Delete(string query, object[] values, IType[] types);
/// <summary>
/// Obtain the specified lock level upon the given object.
/// </summary>
/// <param name="obj">A persistent instance</param>
/// <param name="lockMode">The lock level</param>
void Lock(object obj, LockMode lockMode);
/// <summary>
/// Re-read the state of the given instance from the underlying database.
/// </summary>
/// <remarks>
/// <para>
/// It is inadvisable to use this to implement long-running sessions that span many
/// business tasks. This method is, however, useful in certain special circumstances.
/// </para>
/// <para>
/// For example,
/// <list>
/// <item>Where a database trigger alters the object state upon insert or update</item>
/// <item>After executing direct SQL (eg. a mass update) in the same session</item>
/// <item>After inserting a <c>Blob</c> or <c>Clob</c></item>
/// </list>
/// </para>
/// </remarks>
/// <param name="obj">A persistent instance</param>
void Refresh(object obj);
/// <summary>
/// Re-read the state of the given instance from the underlying database, with
/// the given <c>LockMode</c>.
/// </summary>
/// <remarks>
/// It is inadvisable to use this to implement long-running sessions that span many
/// business tasks. This method is, however, useful in certain special circumstances.
/// </remarks>
/// <param name="obj">a persistent or transient instance</param>
/// <param name="lockMode">the lock mode to use</param>
void Refresh(object obj, LockMode lockMode);
/// <summary>
/// Determine the current lock mode of the given object
/// </summary>
/// <param name="obj">A persistent instance</param>
/// <returns>The current lock mode</returns>
LockMode GetCurrentLockMode(object obj);
/// <summary>
/// Begin a unit of work and return the associated <c>ITransaction</c> object.
/// </summary>
/// <remarks>
/// If a new underlying transaction is required, begin the transaction. Otherwise
/// continue the new work in the context of the existing underlying transaction.
/// The class of the returned <see cref="ITransaction" /> object is determined by
/// the property <c>transaction_factory</c>
/// </remarks>
/// <returns>A transaction instance</returns>
ITransaction BeginTransaction();
/// <summary>
/// Begin a transaction with the specified <c>isolationLevel</c>
/// </summary>
/// <param name="isolationLevel">Isolation level for the new transaction</param>
/// <returns>A transaction instance having the specified isolation level</returns>
ITransaction BeginTransaction(IsolationLevel isolationLevel);
/// <summary>
/// Get the current Unit of Work and return the associated <c>ITransaction</c> object.
/// </summary>
ITransaction Transaction { get; }
/// <summary>
/// Creates a new <c>Criteria</c> for the entity class.
/// </summary>
/// <param name="persistentClass">The class to Query</param>
/// <returns>An ICriteria object</returns>
ICriteria CreateCriteria(System.Type persistentClass);
/// <summary>
/// Creates a new <c>Criteria</c> for the entity class with a specific alias
/// </summary>
/// <param name="persistentClass">The class to Query</param>
/// <param name="alias">The alias of the entity</param>
/// <returns>An ICriteria object</returns>
ICriteria CreateCriteria(System.Type persistentClass, string alias);
/// <summary>
/// Create a new instance of <c>Query</c> for the given query string
/// </summary>
/// <param name="queryString">A hibernate query string</param>
/// <returns>The query</returns>
IQuery CreateQuery(string queryString);
/// <summary>
/// Create a new instance of <c>Query</c> for the given collection and filter string
/// </summary>
/// <param name="collection">A persistent collection</param>
/// <param name="queryString">A hibernate query</param>
/// <returns>A query</returns>
IQuery CreateFilter(object collection, string queryString);
/// <summary>
/// Obtain an instance of <see cref="IQuery" /> for a named query string defined in the
/// mapping file.
/// </summary>
/// <param name="queryName">The name of a query defined externally.</param>
/// <returns>An <see cref="IQuery"/> from a named query string.</returns>
/// <remarks>
/// The query can be either in <c>HQL</c> or <c>SQL</c> format.
/// </remarks>
IQuery GetNamedQuery(string queryName);
/// <summary>
/// Create a new instance of <c>IQuery</c> for the given SQL string.
/// </summary>
/// <param name="sql">a query expressed in SQL</param>
/// <param name="returnAlias">a table alias that appears inside <c>{}</c> in the SQL string</param>
/// <param name="returnClass">the returned persistent class</param>
/// <returns>An <see cref="IQuery"/> from the SQL string</returns>
[Obsolete("Use CreateSQLQuery().AddEntity()")]
IQuery CreateSQLQuery(string sql, string returnAlias, System.Type returnClass);
/// <summary>
/// Create a new instance of <see cref="IQuery" /> for the given SQL string.
/// </summary>
/// <param name="sql">a query expressed in SQL</param>
/// <param name="returnAliases">an array of table aliases that appear inside <c>{}</c> in the SQL string</param>
/// <param name="returnClasses">the returned persistent classes</param>
/// <returns>An <see cref="IQuery"/> from the SQL string</returns>
[Obsolete("Use CreateSQLQuery().AddEntity()")]
IQuery CreateSQLQuery(string sql, string[] returnAliases, System.Type[] returnClasses);
/// <summary>
/// Create a new instance of <see cref="ISQLQuery" /> for the given SQL query string.
/// </summary>
/// <param name="queryString">a query expressed in SQL</param>
/// <returns>An <see cref="ISQLQuery"/> from the SQL string</returns>
ISQLQuery CreateSQLQuery(string queryString);
/// <summary>
/// Completely clear the session. Evict all loaded instances and cancel all pending
/// saves, updates and deletions. Do not close open enumerables or instances of
/// <c>ScrollableResults</c>.
/// </summary>
void Clear();
/// <summary>
/// Return the persistent instance of the given entity class with the given identifier, or null
/// if there is no such persistent instance. (If the instance, or a proxy for the instance, is
/// already associated with the session, return that instance or proxy.)
/// </summary>
/// <param name="clazz">a persistent class</param>
/// <param name="id">an identifier</param>
/// <returns>a persistent instance or null</returns>
object Get(System.Type clazz, object id);
/// <summary>
/// Return the persistent instance of the given entity class with the given identifier, or null
/// if there is no such persistent instance. Obtain the specified lock mode if the instance
/// exists.
/// </summary>
/// <param name="clazz">a persistent class</param>
/// <param name="id">an identifier</param>
/// <param name="lockMode">the lock mode</param>
/// <returns>a persistent instance or null</returns>
object Get(System.Type clazz, object id, LockMode lockMode);
/// <summary>
/// Strongly-typed version of <see cref="Get(System.Type, object)" />
/// </summary>
T Get<T>(object id);
/// <summary>
/// Strongly-typed version of <see cref="Get(System.Type, object, LockMode)" />
/// </summary>
T Get<T>(object id, LockMode lockMode);
/// <summary>
/// Return the entity name for a persistent entity
/// </summary>
/// <param name="obj">a persistent entity</param>
/// <returns> the entity name </returns>
System.String GetEntityName(object obj);
/// <summary>
/// Enable the named filter for this current session.
/// </summary>
/// <param name="filterName">The name of the filter to be enabled.</param>
/// <returns>The Filter instance representing the enabled fiter.</returns>
IFilter EnableFilter(string filterName);
/// <summary>
/// Retrieve a currently enabled filter by name.
/// </summary>
/// <param name="filterName">The name of the filter to be retrieved.</param>
/// <returns>The Filter instance representing the enabled fiter.</returns>
IFilter GetEnabledFilter(string filterName);
/// <summary>
/// Disable the named filter for the current session.
/// </summary>
/// <param name="filterName">The name of the filter to be disabled.</param>
void DisableFilter(string filterName);
/// <summary>
/// Create a multi query, a query that can send several
/// queries to the server, and return all their results in a single
/// call.
/// </summary>
/// <returns>
/// An <see cref="IMultiQuery"/> that can return
/// a list of all the results of all the queries.
/// Note that each query result is itself usually a list.
/// </returns>
IMultiQuery CreateMultiQuery();
/// <summary>
/// Sets the batch size of the session
/// </summary>
/// <param name="batchSize"></param>
/// <returns></returns>
ISession SetBatchSize(int batchSize);
/// <summary>
/// Gets the session implementation.
/// </summary>
/// <remarks>
/// This method is provided in order to get the <b>NHibernate</b> implementation of the session from wrapper implementions.
/// Implementors of the <seealso cref="ISession"/> interface should return the NHibernate implementation of this method.
/// </remarks>
/// <returns>
/// An NHibernate implementation of the <seealso cref="ISessionImplementor"/> interface
/// </returns>
ISessionImplementor GetSessionImplementation();
/// <summary>
/// An <see cref="IMultiCriteria"/> that can return a list of all the results
/// of all the criterias.
/// </summary>
/// <returns></returns>
IMultiCriteria CreateMultiCriteria();
/// <summary> Get the statistics for this session.</summary>
ISessionStatistics Statistics { get;}
}
}