I\'m trying to use paging (that is .Skip(...).Take(...) in Entity Framework 7. It works OK with Microsoft SQL Server 2012 and 2014, but fails with the following
.Skip(...).Take(...)
Here, just set UseRowNumberForPaging() in ConfigureServices
UseRowNumberForPaging()
ConfigureServices
services.AddDbContext(options => options.UseSqlServer(Configuration.GetConnectionString("Connectionstring"),opt=> { opt.UseRowNumberForPaging(); }));