forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMsSqlCe40TestDialect.cs
39 lines (30 loc) · 1.11 KB
/
MsSqlCe40TestDialect.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace NHibernate.Test.TestDialects
{
public class MsSqlCe40TestDialect : TestDialect
{
public MsSqlCe40TestDialect(Dialect.Dialect dialect) : base(dialect)
{
}
public override bool SupportsFullJoin => false;
public override bool SupportsComplexExpressionInGroupBy => false;
public override bool SupportsCountDistinct => false;
/// <summary>
/// Error 25520: Expressions in the ORDER BY list cannot contain aggregate functions.
/// </summary>
public override bool SupportsOrderByAggregate => false;
/// <summary>
/// Error 25547: ORDER BY <column number> not supported.
/// </summary>
public override bool SupportsOrderByColumnNumber => false;
public override bool SupportsDuplicatedColumnAliases => false;
public override bool SupportsEmptyInserts => false;
/// <summary>
/// Modulo is not supported on real, float, money, and numeric data types. [ Data type = numeric ]
/// </summary>
public override bool SupportsModuloOnDecimal => false;
/// <summary>
/// Does not support update locks
/// </summary>
public override bool SupportsSelectForUpdate => false;
}
}