Skip to content

Commit 81f3eca

Browse files
committed
NH-4008 - Split out drivers into own projects.
1 parent 0c7e383 commit 81f3eca

File tree

100 files changed

+1785
-290
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+1785
-290
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using NHibernate.Driver;
2+
3+
namespace NHibernate.Cfg.Loquacious
4+
{
5+
public static class ConnectionConfigurationExtensionReflectionBased
6+
{
7+
public static IConnectionConfiguration ByReflectionDriver<TDriver>(this IConnectionConfiguration cfg) where TDriver : ReflectionBasedDriver
8+
{
9+
return cfg.By<TDriver>();
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)