We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 993da7c commit 62c274bCopy full SHA for 62c274b
src/NHibernate.Test/NHSpecificTest/NH3405/Fixture.cs
@@ -3,6 +3,7 @@
3
using System.Xml.Linq;
4
using NHibernate.Cfg;
5
using NHibernate.Cfg.MappingSchema;
6
+using NHibernate.Dialect;
7
using NHibernate.Linq;
8
using NHibernate.Mapping.ByCode;
9
using NHibernate.Type;
@@ -23,6 +24,11 @@ protected override void Configure(Configuration configuration)
23
24
configuration.SetProperty(Cfg.Environment.WrapResultSets, Boolean.TrueString);
25
}
26
27
+ protected override bool AppliesTo(Dialect.Dialect dialect)
28
+ {
29
+ return dialect is MsSql2005Dialect;
30
+ }
31
+
32
protected override HbmMapping GetMappings()
33
{
34
var mapper = new ModelMapper();
0 commit comments