We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83e978 commit e6cd5a9Copy full SHA for e6cd5a9
src/NHibernate.Test/NHSpecificTest/NH2858/Fixture.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.Linq;
3
using NHibernate.Cfg.MappingSchema;
4
+using NHibernate.Dialect;
5
using NHibernate.Linq;
6
using NHibernate.Mapping.ByCode;
7
using NUnit.Framework;
@@ -15,6 +16,11 @@ public class Entity
15
16
17
public class Fixture : TestCaseMappingByCode
18
{
19
+ protected override bool AppliesTo(Dialect.Dialect dialect)
20
+ {
21
+ return dialect as MsSql2005Dialect != null;
22
+ }
23
+
24
protected override HbmMapping GetMappings()
25
26
var mapper = new ModelMapper();
0 commit comments