forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCriteriaImpl.cs
1096 lines (935 loc) · 25.1 KB
/
CriteriaImpl.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
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using NHibernate.Criterion;
using NHibernate.Engine;
using NHibernate.Multi;
using NHibernate.SqlCommand;
using NHibernate.Transform;
using NHibernate.Util;
namespace NHibernate.Impl
{
/// <summary>
/// Implementation of the <see cref="ICriteria"/> interface
/// </summary>
[Serializable]
public partial class CriteriaImpl : ICriteria, ISupportEntityJoinCriteria, ISupportSelectModeCriteria
{
private readonly System.Type persistentClass;
private readonly List<CriterionEntry> criteria = new List<CriterionEntry>();
private readonly List<OrderEntry> orderEntries = new List<OrderEntry>(10);
private readonly Dictionary<string, SelectMode> selectModes = new Dictionary<string, SelectMode>();
private readonly Dictionary<string, LockMode> lockModes = new Dictionary<string, LockMode>();
private readonly Dictionary<string, HashSet<string>> _entityFetchLazyProperties = new Dictionary<string, HashSet<string>>();
private int maxResults = RowSelection.NoValue;
private int firstResult;
private int timeout = RowSelection.NoValue;
private int fetchSize = RowSelection.NoValue;
private ISessionImplementor session;
private IResultTransformer resultTransformer = CriteriaSpecification.RootEntity;
private bool cacheable;
private string cacheRegion;
private CacheMode? cacheMode;
private CacheMode? sessionCacheMode;
private string comment;
private FlushMode? flushMode;
private FlushMode? sessionFlushMode;
private bool? readOnly;
private readonly List<Subcriteria> subcriteriaList = new List<Subcriteria>();
private readonly string rootAlias;
private readonly Dictionary<string, ICriteria> subcriteriaByPath = new Dictionary<string, ICriteria>();
private readonly Dictionary<string, ICriteria> subcriteriaByAlias = new Dictionary<string, ICriteria>();
private readonly string entityOrClassName;
// Projection Fields
private IProjection projection;
private ICriteria projectionCriteria;
public CriteriaImpl(System.Type persistentClass, ISessionImplementor session)
: this(persistentClass.FullName, CriteriaSpecification.RootAlias, session)
{
this.persistentClass = persistentClass;
}
public CriteriaImpl(System.Type persistentClass, string alias, ISessionImplementor session)
: this(persistentClass.FullName, alias, session)
{
this.persistentClass = persistentClass;
}
public CriteriaImpl(string entityOrClassName, ISessionImplementor session)
: this(entityOrClassName, CriteriaSpecification.RootAlias, session) {}
public CriteriaImpl(string entityOrClassName, string alias, ISessionImplementor session)
{
this.session = session;
this.entityOrClassName = entityOrClassName;
cacheable = false;
rootAlias = alias;
subcriteriaByAlias[alias] = this;
}
public ISessionImplementor Session
{
get { return session; }
set { session = value; }
}
public string EntityOrClassName
{
get { return entityOrClassName; }
}
public IDictionary<string, LockMode> LockModes
{
get { return lockModes; }
}
public ICriteria ProjectionCriteria
{
get { return projectionCriteria; }
}
public bool LookupByNaturalKey
{
get
{
if (projection != null)
{
return false;
}
if (subcriteriaList.Count > 0)
{
return false;
}
if (criteria.Count != 1)
{
return false;
}
CriterionEntry ce = criteria[0];
return ce.Criterion is NaturalIdentifier;
}
}
public string Alias
{
get { return rootAlias; }
}
public IProjection Projection
{
get { return projection; }
}
/// <inheritdoc />
public bool IsReadOnlyInitialized
{
get { return (readOnly != null); }
}
/// <inheritdoc />
public bool IsReadOnly
{
get
{
if (!IsReadOnlyInitialized && (Session == null))
throw new InvalidOperationException("cannot determine readOnly/modifiable setting when it is not initialized and is not initialized and Session == null");
return IsReadOnlyInitialized ? readOnly.Value : Session.PersistenceContext.DefaultReadOnly;
}
}
//Since 5.2
[Obsolete("Use GetSelectMode instead")]
public FetchMode GetFetchMode(string path)
{
switch (GetSelectMode(path))
{
case SelectMode.Undefined:
return FetchMode.Default;
case SelectMode.Skip:
return FetchMode.Lazy;
default:
return FetchMode.Join;
}
}
public SelectMode GetSelectMode(string path)
{
if (!selectModes.TryGetValue(path, out var result))
{
result = SelectMode.Undefined;
}
return result;
}
public HashSet<string> GetEntityFetchLazyProperties(string path)
{
if (_entityFetchLazyProperties.TryGetValue(path, out var result))
{
return result;
}
return null;
}
public IResultTransformer ResultTransformer
{
get { return resultTransformer; }
}
public int MaxResults
{
get { return maxResults; }
}
public int FirstResult
{
get { return firstResult; }
}
public int FetchSize
{
get { return fetchSize; }
}
public int Timeout
{
get { return timeout; }
}
public bool Cacheable
{
get { return cacheable; }
}
public string CacheRegion
{
get { return cacheRegion; }
}
public CacheMode? CacheMode => cacheMode;
public string Comment
{
get { return comment; }
}
protected internal void Before()
{
if (flushMode.HasValue)
{
sessionFlushMode = Session.FlushMode;
Session.FlushMode = flushMode.Value;
}
if (cacheMode.HasValue)
{
sessionCacheMode = Session.CacheMode;
Session.CacheMode = cacheMode.Value;
}
}
protected internal void After()
{
if (sessionFlushMode.HasValue)
{
Session.FlushMode = sessionFlushMode.Value;
sessionFlushMode = null;
}
if (sessionCacheMode.HasValue)
{
Session.CacheMode = sessionCacheMode.Value;
sessionCacheMode = null;
}
}
public ICriteria SetMaxResults(int maxResults)
{
this.maxResults = maxResults;
return this;
}
public ICriteria SetFirstResult(int firstResult)
{
this.firstResult = firstResult;
return this;
}
public ICriteria SetTimeout(int timeout)
{
this.timeout = timeout;
return this;
}
public ICriteria SetFetchSize(int fetchSize)
{
this.fetchSize = fetchSize;
return this;
}
public ICriteria Add(ICriterion expression)
{
Add(this, expression);
return this;
}
public IList List()
{
return List<object>().ToIList();
}
public void List(IList results)
{
ArrayHelper.AddAll(results, List());
}
public IList<T> List<T>()
{
Before();
try
{
return session.List<T>(this);
}
finally
{
After();
}
}
public T UniqueResult<T>()
{
object result = UniqueResult();
if (result == null && typeof (T).IsValueType)
{
return default(T);
}
else
{
return (T) result;
}
}
public void ClearOrders()
{
orderEntries.Clear();
}
public IEnumerable<CriterionEntry> IterateExpressionEntries()
{
return criteria;
}
public IEnumerable<OrderEntry> IterateOrderings()
{
return orderEntries;
}
public IEnumerable<Subcriteria> IterateSubcriteria()
{
return subcriteriaList;
}
public override string ToString()
{
bool first = true;
StringBuilder builder = new StringBuilder();
foreach (CriterionEntry criterionEntry in criteria)
{
if (!first)
{
builder.Append(" and ");
}
builder.Append(criterionEntry.ToString());
first = false;
}
if (orderEntries.Count != 0)
{
builder.AppendLine();
}
first = true;
foreach (OrderEntry orderEntry in orderEntries)
{
if (!first)
{
builder.Append(" and ");
}
builder.Append(orderEntry.ToString());
first = false;
}
return builder.ToString();
}
public ICriteria Fetch(SelectMode selectMode, string associationPath, string alias)
{
if (!string.IsNullOrEmpty(alias))
{
var criteriaByAlias = GetCriteriaByAlias(alias);
criteriaByAlias.Fetch(selectMode, associationPath, null);
return this;
}
if (selectMode == SelectMode.FetchLazyPropertyGroup)
{
StringHelper.ParsePathAndPropertyName(associationPath, out associationPath, out var propertyName);
if (_entityFetchLazyProperties.TryGetValue(associationPath, out var propertyNames))
{
propertyNames.Add(propertyName);
}
else
{
_entityFetchLazyProperties[associationPath] = new HashSet<string> {propertyName};
}
}
selectModes[associationPath] = selectMode;
return this;
}
public ICriteria AddOrder(Order ordering)
{
orderEntries.Add(new OrderEntry(ordering, this));
return this;
}
//Since 5.2
[Obsolete("Use Fetch instead")]
public ICriteria SetFetchMode(string associationPath, FetchMode mode)
{
Fetch(GetSelectMode(mode), associationPath, null);
return this;
}
//Since 5.2
[Obsolete]
private SelectMode GetSelectMode(FetchMode mode)
{
switch (mode)
{
case FetchMode.Default:
return SelectMode.Undefined;
case FetchMode.Select:
return SelectMode.Skip;
case FetchMode.Join:
return SelectMode.Fetch;
default:
throw new ArgumentOutOfRangeException(nameof(mode), mode, null);
}
}
public ICriteria CreateAlias(string associationPath, string alias)
{
CreateAlias(associationPath, alias, JoinType.InnerJoin);
return this;
}
public ICriteria CreateAlias(string associationPath, string alias, JoinType joinType)
{
new Subcriteria(this, this, associationPath, alias, joinType);
return this;
}
public ICriteria CreateAlias(string associationPath, string alias, JoinType joinType, ICriterion withClause)
{
new Subcriteria(this, this, associationPath, alias, joinType, withClause);
return this;
}
public ICriteria CreateEntityCriteria(string alias, ICriterion withClause, JoinType joinType, string entityName)
{
return new Subcriteria(this, this, alias, alias, joinType, withClause, entityName);
}
public ICriteria Add(ICriteria criteriaInst, ICriterion expression)
{
criteria.Add(new CriterionEntry(expression, criteriaInst));
return this;
}
public ICriteria CreateCriteria(string associationPath)
{
return CreateCriteria(associationPath, JoinType.InnerJoin);
}
public ICriteria CreateCriteria(string associationPath, JoinType joinType)
{
return new Subcriteria(this, this, associationPath, joinType);
}
public ICriteria CreateCriteria(string associationPath, string alias)
{
return CreateCriteria(associationPath, alias, JoinType.InnerJoin);
}
public ICriteria CreateCriteria(string associationPath, string alias, JoinType joinType)
{
return new Subcriteria(this, this, associationPath, alias, joinType);
}
public ICriteria CreateCriteria(string associationPath, string alias, JoinType joinType, ICriterion withClause)
{
return new Subcriteria(this, this, associationPath, alias, joinType, withClause);
}
public IFutureValue<T> FutureValue<T>()
{
return session.GetFutureBatch().AddAsFutureValue<T>(this);
}
public IFutureEnumerable<T> Future<T>()
{
return session.GetFutureBatch().AddAsFuture<T>(this);
}
public object UniqueResult()
{
return AbstractQueryImpl.UniqueElement(List());
}
public ICriteria SetLockMode(LockMode lockMode)
{
return SetLockMode(CriteriaSpecification.RootAlias, lockMode);
}
public ICriteria SetLockMode(string alias, LockMode lockMode)
{
lockModes[alias] = lockMode;
return this;
}
public ICriteria SetResultTransformer(IResultTransformer tupleMapper)
{
resultTransformer = tupleMapper;
return this;
}
public ICriteria SetCacheable(bool cacheable)
{
this.cacheable = cacheable;
return this;
}
public ICriteria SetCacheRegion(string cacheRegion)
{
this.cacheRegion = cacheRegion.Trim();
return this;
}
public ICriteria SetComment(string comment)
{
this.comment = comment;
return this;
}
public ICriteria SetFlushMode(FlushMode flushMode)
{
this.flushMode = flushMode;
return this;
}
public ICriteria SetProjection(params IProjection[] projections)
{
if(projections==null)
throw new ArgumentNullException("projections");
if(projections.Length ==0)
throw new ArgumentException("projections must contain a least one projection");
if(projections.Length==1)
{
projection = projections[0];
}
else
{
var projectionList = new ProjectionList();
foreach (var childProjection in projections)
{
projectionList.Add(childProjection);
}
projection = projectionList;
}
if (projection != null)
{
projectionCriteria = this;
SetResultTransformer(CriteriaSpecification.Projection);
}
return this;
}
/// <inheritdoc />
public ICriteria SetReadOnly(bool readOnly)
{
this.readOnly = readOnly;
return this;
}
/// <summary> Override the cache mode for this particular query. </summary>
/// <param name="cacheMode">The cache mode to use. </param>
/// <returns> this (for method chaining) </returns>
public ICriteria SetCacheMode(CacheMode cacheMode)
{
this.cacheMode = cacheMode;
return this;
}
public object Clone()
{
CriteriaImpl clone;
if (persistentClass != null)
{
clone = new CriteriaImpl(persistentClass, Alias, Session);
}
else
{
clone = new CriteriaImpl(entityOrClassName, Alias, Session);
}
CloneSubcriteria(clone);
foreach (KeyValuePair<string, LockMode> de in lockModes)
{
clone.lockModes.Add(de.Key, de.Value);
}
clone.selectModes.AddOrOverride(selectModes);
clone.maxResults = maxResults;
clone.firstResult = firstResult;
clone.timeout = timeout;
clone.fetchSize = fetchSize;
clone.cacheable = cacheable;
clone.cacheRegion = cacheRegion;
clone.SetProjection(projection);
CloneProjectCrtieria(clone);
clone.SetResultTransformer(resultTransformer);
clone.comment = comment;
clone.readOnly = readOnly;
if (flushMode.HasValue)
{
clone.SetFlushMode(flushMode.Value);
}
if (cacheMode.HasValue)
{
clone.SetCacheMode(cacheMode.Value);
}
return clone;
}
private void CloneProjectCrtieria(CriteriaImpl clone)
{
if (projectionCriteria != null)
{
if (projectionCriteria == this)
{
clone.projectionCriteria = clone;
}
else
{
ICriteria clonedProjectionCriteria = (ICriteria) projectionCriteria.Clone();
clone.projectionCriteria = clonedProjectionCriteria;
}
}
}
private void CloneSubcriteria(CriteriaImpl clone)
{
//we need to preserve the parent criteria, we rely on the ordering when creating the
//subcriterias initially here, so we don't need to make more than a single pass
Dictionary<ICriteria, ICriteria> newParents = new Dictionary<ICriteria, ICriteria>();
newParents[this] = clone;
foreach (Subcriteria subcriteria in IterateSubcriteria())
{
ICriteria currentParent;
if (!newParents.TryGetValue(subcriteria.Parent, out currentParent))
{
throw new AssertionFailure(
"Could not find parent for subcriteria in the previous subcriteria. If you see this error, it is a bug");
}
Subcriteria clonedSubCriteria =
new Subcriteria(clone, currentParent, subcriteria.Path, subcriteria.Alias, subcriteria.JoinType, subcriteria.WithClause, subcriteria.JoinEntityName);
clonedSubCriteria.SetLockMode(subcriteria.LockMode);
newParents[subcriteria] = clonedSubCriteria;
}
// remap the orders
foreach (OrderEntry orderEntry in IterateOrderings())
{
ICriteria currentParent;
if (!newParents.TryGetValue(orderEntry.Criteria, out currentParent))
{
throw new AssertionFailure(
"Could not find parent for order in the previous criteria. If you see this error, it is a bug");
}
currentParent.AddOrder(orderEntry.Order);
}
// remap the restrictions to appropriate criterias
foreach (CriterionEntry criterionEntry in criteria)
{
ICriteria currentParent;
if (!newParents.TryGetValue(criterionEntry.Criteria, out currentParent))
{
throw new AssertionFailure(
"Could not find parent for restriction in the previous criteria. If you see this error, it is a bug.");
}
currentParent.Add(criterionEntry.Criterion);
}
}
public ICriteria GetCriteriaByPath(string path)
{
ICriteria result;
subcriteriaByPath.TryGetValue(path, out result);
return result;
}
public ICriteria GetCriteriaByAlias(string alias)
{
ICriteria result;
subcriteriaByAlias.TryGetValue(alias, out result);
return result;
}
[Serializable]
public sealed partial class Subcriteria : ICriteria, ISupportSelectModeCriteria
{
// Added to simulate Java-style inner class
private readonly CriteriaImpl root;
private readonly ICriteria parent;
private string alias;
private readonly string path;
private LockMode lockMode;
private readonly JoinType joinType;
private ICriterion withClause;
private bool hasRestrictions;
internal Subcriteria(CriteriaImpl root, ICriteria parent, string path, string alias, JoinType joinType, ICriterion withClause, string joinEntityName = null)
{
this.root = root;
this.parent = parent;
this.alias = alias;
this.path = path;
this.joinType = joinType;
this.withClause = withClause;
JoinEntityName = joinEntityName;
hasRestrictions = withClause != null;
root.subcriteriaList.Add(this);
root.subcriteriaByPath[path] = this;
SetAlias(alias);
}
internal Subcriteria(CriteriaImpl root, ICriteria parent, string path, string alias, JoinType joinType)
: this(root, parent, path, alias, joinType, null) {}
internal Subcriteria(CriteriaImpl root, ICriteria parent, string path, JoinType joinType)
: this(root, parent, path, null, joinType) { }
/// <summary>
/// Entity name for "Entity Join" - join for entity with not mapped association
/// </summary>
public string JoinEntityName { get; }
/// <summary>
/// Is this an Entity join for not mapped association
/// </summary>
public bool IsEntityJoin => JoinEntityName != null;
public ICriterion WithClause
{
get { return withClause; }
}
public string Path
{
get { return path; }
}
public bool HasRestrictions
{
get { return hasRestrictions; }
}
public ICriteria Parent
{
get { return parent; }
}
public JoinType JoinType
{
get { return joinType; }
}
public string Alias
{
get { return alias; }
set { SetAlias(value); }
}
public LockMode LockMode
{
get { return lockMode; }
}
public bool IsReadOnlyInitialized
{
get { return root.IsReadOnlyInitialized; }
}
public bool IsReadOnly
{
get { return root.IsReadOnly; }
}
public ICriteria SetLockMode(LockMode lockMode)
{
this.lockMode = lockMode;
return this;
}
public ICriteria Add(ICriterion expression)
{
hasRestrictions = true;
root.Add(this, expression);
return this;
}
public ICriteria AddOrder(Order order)
{
root.orderEntries.Add(new OrderEntry(order, this));
return this;
}
public ICriteria CreateAlias(string associationPath, string alias)
{
return CreateAlias(associationPath, alias, JoinType.InnerJoin);
}
public ICriteria CreateAlias(string associationPath, string alias, JoinType joinType)
{
new Subcriteria(root, this, associationPath, alias, joinType);
return this;
}
public ICriteria CreateAlias(string associationPath, string alias, JoinType joinType, ICriterion withClause)
{
new Subcriteria(root, this, associationPath, alias, joinType, withClause);
return this;
}
public ICriteria CreateCriteria(string associationPath)
{
return CreateCriteria(associationPath, JoinType.InnerJoin);
}
public ICriteria CreateCriteria(string associationPath, JoinType joinType)
{
return new Subcriteria(root, this, associationPath, joinType);
}
public ICriteria CreateCriteria(string associationPath, string alias)
{
return CreateCriteria(associationPath, alias, JoinType.InnerJoin);
}
public ICriteria CreateCriteria(string associationPath, string alias, JoinType joinType)
{
return new Subcriteria(root, this, associationPath, alias, joinType);
}
public ICriteria CreateCriteria(string associationPath, string alias, JoinType joinType, ICriterion withClause)
{
return new Subcriteria(root, this, associationPath, alias, joinType, withClause);
}
public ICriteria SetCacheable(bool cacheable)
{
root.SetCacheable(cacheable);
return this;
}
public ICriteria SetCacheRegion(string cacheRegion)
{
root.SetCacheRegion(cacheRegion);
return this;
}
public IList List()
{
return root.List();
}
public IFutureValue<T> FutureValue<T>()
{
return root.FutureValue<T>();
}
public IFutureEnumerable<T> Future<T>()
{
return root.Future<T>();
}
public void List(IList results)
{
root.List(results);
}
public IList<T> List<T>()
{
return root.List<T>();
}
public T UniqueResult<T>()
{
return root.UniqueResult<T>();
}
public void ClearOrders()
{
root.ClearOrders();
}
public object UniqueResult()
{
return root.UniqueResult();
}
//Since 5.2
[Obsolete("Use Fetch instead")]
public ICriteria SetFetchMode(string associationPath, FetchMode mode)
{
root.SetFetchMode(StringHelper.Qualify(path, associationPath), mode);
return this;
}
public ICriteria Fetch(SelectMode selectMode, string associationPath, string alias)
{
if (!string.IsNullOrEmpty(alias))
{
root.Fetch(selectMode, associationPath, alias);
return this;
}
root.Fetch(selectMode, string.IsNullOrEmpty(associationPath) ? path : StringHelper.Qualify(path, associationPath), null);
return this;
}
public ICriteria SetFlushMode(FlushMode flushMode)
{
root.SetFlushMode(flushMode);
return this;
}
/// <summary> Override the cache mode for this particular query. </summary>
/// <param name="cacheMode">The cache mode to use. </param>
/// <returns> this (for method chaining) </returns>
public ICriteria SetCacheMode(CacheMode cacheMode)
{
root.SetCacheMode(cacheMode);
return this;
}
public ICriteria SetFirstResult(int firstResult)
{
root.SetFirstResult(firstResult);
return this;
}
public ICriteria SetMaxResults(int maxResults)
{
root.SetMaxResults(maxResults);
return this;
}
public ICriteria SetTimeout(int timeout)
{
root.SetTimeout(timeout);
return this;
}
public ICriteria SetFetchSize(int fetchSize)
{
root.SetFetchSize(fetchSize);
return this;
}
public ICriteria SetLockMode(string alias, LockMode lockMode)
{
root.SetLockMode(alias, lockMode);
return this;
}
public ICriteria SetResultTransformer(IResultTransformer resultProcessor)
{
root.SetResultTransformer(resultProcessor);
return this;
}
public ICriteria SetComment(string comment)
{
root.SetComment(comment);
return this;
}
public ICriteria SetProjection(params IProjection[] projections)
{
root.SetProjection(projections);
return this;
}
public ICriteria SetReadOnly(bool readOnly)
{
root.SetReadOnly(readOnly);
return this;
}
public ICriteria GetCriteriaByPath(string path)
{
return root.GetCriteriaByPath(path);
}
public ICriteria GetCriteriaByAlias(string alias)
{