Skip to content

Commit a38f80a

Browse files
committed
MsSqlCeDialect supports variable limit
1 parent f02ddd0 commit a38f80a

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

src/NHibernate/Dialect/MsSqlCe40Dialect.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ public override bool SupportsLimitOffset
99
get { return true; }
1010
}
1111

12-
public override bool SupportsVariableLimit
13-
{
14-
get { return true; }
15-
}
16-
1712
public override SqlString GetLimitString(SqlString queryString, SqlString offset, SqlString limit)
1813
{
1914
var builder = new SqlStringBuilder(queryString);

src/NHibernate/Dialect/MsSqlCeDialect.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,6 @@ public override bool SupportsLimitOffset
106106
get { return false; }
107107
}
108108

109-
public override bool SupportsVariableLimit
110-
{
111-
get { return false; }
112-
}
113-
114109
public override IDataBaseSchema GetDataBaseSchema(DbConnection connection)
115110
{
116111
return new MsSqlCeDataBaseSchema(connection);

0 commit comments

Comments
 (0)