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 ee0b708 commit 619d0b9Copy full SHA for 619d0b9
src/NHibernate.Test/NHSpecificTest/NH3414/FixtureByCode.cs
@@ -1,7 +1,6 @@
1
using System.Linq;
2
-using System.Linq.Expressions;
3
-using Antlr.Runtime.Misc;
4
using NHibernate.Cfg.MappingSchema;
+using NHibernate.Dialect;
5
using NHibernate.Linq;
6
using NHibernate.Mapping.ByCode;
7
using NUnit.Framework;
@@ -10,6 +9,12 @@ namespace NHibernate.Test.NHSpecificTest.NH3414
10
9
{
11
public class ByCodeFixture : TestCaseMappingByCode
12
+ protected override bool AppliesTo(Dialect.Dialect dialect)
13
+ {
14
+ // SQL Server CE does not appear to support subqueries in the ORDER BY clause.
15
+ return !(dialect is MsSqlCeDialect);
16
+ }
17
+
18
protected override HbmMapping GetMappings()
19
20
var mapper = new ModelMapper();
0 commit comments