forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryProviderFactory.cs
29 lines (28 loc) · 996 Bytes
/
QueryProviderFactory.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
using System;
using NHibernate.Engine;
namespace NHibernate.Linq
{
static class QueryProviderFactory
{
/// <summary>
/// Builds a new query provider.
/// </summary>
/// <param name="session">A session.</param>
/// <param name="collection">If the query is to be filtered as belonging to an entity collection, the collection.</param>
/// <returns>The new query provider instance.</returns>
public static INhQueryProvider CreateQueryProvider(ISessionImplementor session, object collection)
{
if (session.Factory.Settings.LinqQueryProviderType == null)
{
return new DefaultQueryProvider(session, collection);
}
else
{
// For backward compatibility, prioritize using the version without collection.
return (collection == null
? Activator.CreateInstance(session.Factory.Settings.LinqQueryProviderType, session)
: Activator.CreateInstance(session.Factory.Settings.LinqQueryProviderType, session, collection)) as INhQueryProvider;
}
}
}
}