'OFFSET' 附近有語法錯誤。 在 FETCH 語句中選項 NEXT 的用法無效。
最近在使用asp.net core的時候,採用take().skip()分頁的時候報以下錯誤:
SqlException: 'OFFSET' 附近有語法錯誤。 在 FETCH 語句中選項 NEXT 的用法無效。
這個主要是在sql server 2008中,不支持FETCH和NEXT語句(sql server 2012才支持)。
以後在網上參考了一下其餘的文章,最終解決了這個問題,記錄一下,方便後來人。
解決方法:
修改「StartUp.cs」文件,具體代碼截圖以下:
1.普通修改方式
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc();
var connection = @"Data Source=tcp:111.111.111.111,1044;
Initial Catalog=xxx;Persist Security Info=True;User ID=xxxx;Password=xxxxx";
services.AddDbContext<NoteContext>(options => options.UseSqlServer(connection,
b=>b.UseRowNumberForPaging()));
services.AddScoped<Repository.INoteRepository,Repository.NoteRepository>();
services.AddScoped<Repository.INoteTypeRepository, Repository.NoteTypeRepository>();
}
2.abp修改方式
public static class DbContextOptionsConfigurer
{
public static void Configure(
DbContextOptionsBuilder<SSODbContext> dbContextOptions,
string connectionString
)
{
/* This is the single point to configure DbContextOptions for testDbContext */
dbContextOptions.UseSqlServer(connectionString ,
b => b.UseRowNumberForPaging());
}
}