I didn't find anywhere whether is possible to query from Db4o all objects implementing some generic interface
for example:
to query all objects implementing IList<T>, I tried:
var items = from IList<object> item in session
select item;
but this doesn't return all lists in database (only the ones which implements specificaly IList<object>)
Is there any way to do it other then query all objects from database, loop them and evaluate the object manually? (I would have to pass through milions of objects in this case)
Thank you