我有这个剃刀声明
sql = "SELECT * FROM CarBike" +
"Order By id OFFSET @0 ROWS FETCH NEXT @1 ROWS ;";
var result = db.Query(sql, offset, pageSize);
我收到错误
Incorrect syntax near the keyword 'By'.
Invalid usage of the option NEXT in the FETCH statement.
System.Data.SqlClient.SqlException: Incorrect syntax near the keyword 'By'.
Invalid usage of the option NEXT in the FETCH statement.
请帮我纠正这个错误