Hi,
sorry for late response - I ended up performing the select on Ax side, e.g:
select firstonly10 custTable;
Then in .NET I have method which accepts CustTable buffer, and just iterates through it:
void dummy(CustTable CustTable)
do
{
// you have now full control over custtable
}while (CustTable.Next())
I would call this technique unLINQ :)
Thanks,
M