Skip to content

Commit 8ae0e9d

Browse files
Merge pull request #546 from Wulfheart/Wulfheart-patch-1
Disable SQL Legacy Pagination by default
2 parents 82abaa4 + 2a1783e commit 8ae0e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QueryBuilder/Compilers/SqlServerCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public SqlServerCompiler()
1212
}
1313

1414
public override string EngineCode { get; } = EngineCodes.SqlServer;
15-
public bool UseLegacyPagination { get; set; } = true;
15+
public bool UseLegacyPagination { get; set; } = false;
1616

1717
protected override SqlResult CompileSelectQuery(Query query)
1818
{

0 commit comments

Comments
 (0)