Incorrect syntax near 'OFFSET'

That's right and I have this piece of code in my startup.cs.
services.AddDbContext<PrudentialAdmin.Data.PrudentialDbContext>(options =>
{
options.UseSqlServer(Configuration.GetConnectionString("PrudentialDBConnection"),
sqlOptions => sqlOptions.UseRowNumberForPaging());
});

What do I have to do?