使用 EntityFrameworkCore 鏈接 SQL Server 2008 執行.Skip().Take()
分頁查詢時出現以下異常:c#
SqlException: 'OFFSET' 附近有語法錯誤。 在 FETCH 語句中選項 NEXT 的用法無效。
SQL Server 中有幾種實現分頁的方式,可是有版本限制.ide
而在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(); }); }