Hi,
How I can quickly retrieve the number of rows of a persistent table?
I have written a code like this:
…
XPCollection coll = new XPCollection(uow, t);
num_rows = coll.Count;
…
And I can get the number of rows in coll.count but all table records are loaded into memory and it takes too much time.
Any suggestion?
Andrea
Taken from "Creating an XPCollection" - By default, the XPCollection retrieves all the objects which match the search criteria. To override this behavior, you can set the value of the TopReturnedObjects property to specify the maximum number of objects retrieved.
Here are some ways to query the data-store https://documentation.devexpress.com/#XPO/CustomDocument2034