You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.
There are a number of edge cases for Skip and Take that aren't supported:
Calling Skip without subsequently calling Take
Calling Skip multiple times
Calling Take multiple times
It should be possible to support all of these scenarios. Multiple calls can be folded into a single call in trivial cases. In more complicated scenarios involving mixed calls to Where and Skip/Take it will be necessary to generate a subquery. A Skip without any Take can be implemented with session variables.
There are a number of edge cases for
Skip
andTake
that aren't supported:It should be possible to support all of these scenarios. Multiple calls can be folded into a single call in trivial cases. In more complicated scenarios involving mixed calls to
Where
andSkip
/Take
it will be necessary to generate a subquery. A Skip without any Take can be implemented with session variables.Test case overrides:
Invio.QueryProvider.MySql/test/Invio.QueryProvider.MySql.Test/MySqlQueryableTest.cs
Lines 108 to 118 in 03146ab
The text was updated successfully, but these errors were encountered: