The following query takes a while to return:
db.Query<Person>(x => x.StartsWith("Chr", StringComparison.CurrentCultureIgnoreCase))
is there a way to get this working correctly? ie faster?
|
feedback
|
|
Maybe you ran into a limitation of db4o’s query-optimization. Normally Native Queries and LINQ-Queries are translated into a low level SODA-query. When this optimization fails, db4o instantiates the objects in the database in order to execute the query. As you can imagine this can be quite slow. The best current solution is to use a SODA directly for this case. For example a class with one property:
The native query like this:
Can be represented by this SODA-Query:
I hope future versions of the Query-Optimizer support this case directly. | |||||||||||||
feedback
|
|
adding and index on the column you're comparing would probably help. | |||
feedback
|