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 09d5f5d commit f830f9cCopy full SHA for f830f9c
src/NHibernate.Test/NHSpecificTest/NH3518/XmlColumnTest.cs
@@ -1,5 +1,6 @@
1
using System.Xml;
2
using NHibernate.Cfg;
3
+using NHibernate.Dialect;
4
using NHibernate.Driver;
5
using NHibernate.Engine;
6
using NUnit.Framework;
@@ -19,6 +20,11 @@ protected override void OnTearDown()
19
20
}
21
22
23
+ protected override bool AppliesTo(Dialect.Dialect dialect)
24
+ {
25
+ return dialect is MsSql2005Dialect;
26
+ }
27
+
28
protected override bool AppliesTo(ISessionFactoryImplementor factory)
29
{
30
return factory.ConnectionProvider.Driver is SqlClientDriver;
0 commit comments