vote up 0 vote down star

Does anyone know how how to execute something like a "SELECT TOP n" in DB4O in C#

flag

2 Answers

vote up 1 vote down check

This page should be useful to you:
http://developer.db4o.com/forums/thread/55863.aspx

Also if you like it, here's a LINQ implementation for DB4O:
http://www.codeproject.com/KB/database/LINQ_for_db4o.aspx

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.