An IQueryable<T> that uses Skip and Take (let's say 0 and 20) produces a query with the following line at the end:
OFFSET 0 ROWS FETCH NEXT 20 ROWS ONLY
I get the error "ORA-00933: SQL command not properly ended" because this is not valid syntax for 11.2.
Can anyone confirm this is a bug?