It seems like OrmLite Select(predicate) function it brings back everything in the where clause (across the network) and then applies the .Take(x) on top of that.
I need a way to only bring back the TOP x so the results are faster and use less bandwidth.
Is there a way to limit TOP rows returned by OrmLite select (using a Linq Expression)?