Does anyone know how how to execute something like a "SELECT TOP n" in DB4O in C#
|
|
This page should be useful to you: Also if you like it, here's a LINQ implementation for DB4O: |
||
|
|
|
|
Results of a db4o query are lazy through the use of the facade pattern. You can do a simple for loop from i = 0 to i = n in order to work only with the top n items. The rest are not activated, although they are countable through the facade's Count property. |
||
|
|
