forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollectionLoader.cs
45 lines (38 loc) · 1.11 KB
/
CollectionLoader.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
using System;
using System.Collections;
using NHibernate.Engine;
using NHibernate.Persister.Collection;
using NHibernate.Type;
namespace NHibernate.Loader.Collection
{
/// <summary>
/// Superclass for loaders that initialize collections
/// <seealso cref="OneToManyLoader" />
/// <seealso cref="BasicCollectionLoader" />
/// </summary>
public class CollectionLoader : OuterJoinLoader, ICollectionInitializer
{
private readonly IQueryableCollection collectionPersister;
public CollectionLoader( IQueryableCollection persister, ISessionFactoryImplementor factory, IDictionary enabledFilters )
: base( factory, enabledFilters )
{
this.collectionPersister = persister;
}
protected internal override bool IsSubselectLoadingEnabled
{
get { return HasSubselectLoadableCollections(); }
}
public virtual void Initialize( object id, ISessionImplementor session )
{
LoadCollection( session, id, KeyType );
}
protected IType KeyType
{
get { return collectionPersister.KeyType; }
}
public override string ToString()
{
return GetType().FullName + '(' + collectionPersister.Role + ')';
}
}
}