EntityFrameworkCore 分頁問題

場景重現

使用 EntityFrameworkCore 鏈接 SQL Server 2008 執行.Skip().Take()分頁查詢時出現以下異常:c#

SqlException: 'OFFSET' 附近有語法錯誤。
在 FETCH 語句中選項 NEXT 的用法無效。

異常緣由

SQL Server 中有幾種實現分頁的方式,可是有版本限制.ide

  • top not in 方式 - SQL Server 2005 新增的
  • ROW_NUMBER() OVER()方式 - SQL Server 2008 新增的
  • offset fetch next 方式 - SQL Server 2012 新增的

而在EntityFramworkCore中默認使用的是最新的offset fetch方式,
而我使用的 SQL Server 2008 不支持該關鍵字, 天然就異常.fetch

解決辦法

這是 EntityFrameworkCore 中的原話.ui

Use a ROW_NUMBER() in queries instead of OFFSET/FETCH. This method is backwards-compatible to SQL Server 2005. public virtual void UseRowNumberForPaging();code

因而乎,咱們指定下 EntityFramworkCore 中使用的分頁模式便可.ip

protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
    optionsBuilder.UserSqlServer("yourConnectionString", options => {
        options.UseRowNumberForPaging();
    });
}
相關文章
相關標籤/搜索