Hello,
to retrieve data from a large database with self-references I'm using the following code:
MethodStart:
var predicate = ... some initial predicate expression
var qf=new QueryFactory();
var q=qf.From(qf....).Where(predicate)
if (recurisonLevel == 1)
{q=q.Limit(maxRows).OrderBy(TimeStamp)}
...
FetchQuery(q.Select(...))
...
// now check the clients
predicate=<EntityName>Fields.ParentRef.In(q.Select(ParentRef))
goto MethodStart;
(Recursion level 1..3)
The call on recursion level 1 generates the ORDER and TOP clause. My expectation for recursion level 2+3 is, that the subquery still has to use the initial ORDER+TOP clause. But only the ORDER clause survive. The top clause on the sub query is removed.
The problem is on MS SQL Srever side. MS SQL Srever accepts a ORDER for a sub query only, if there is a TOP clause.
Oracle works fine with the implemented approach (fast, correct).
It seems to me, that the limit function is restricted and not being called for sub queries.
I can see the same generated code for ORACLE - which is accepted.
Thanks a lot for any help with this issue.