Tagged Questions
3
votes
4answers
1k views
Db4o query: find all objects with ID = {anything in array}
I've stored 30,000 SimpleObjects in my database:
class SimpleObject
{
public int Id { get; set; }
}
I want to run a query on DB4O that finds all SimpleObjects with any of the specified IDs:
...
2
votes
1answer
251 views
Lambda syntax in linq to db4o?
I know the following is possible with linq2db4o
from Apple a in db
where a.Color.Equals(Colors.Green)
select a
What I need however is something that allows me to build my query conditionally (like ...
2
votes
1answer
755 views
Why does the StringComparison.InvariantCultureIgnoreCase not work with this Db4o linq query?
The following query works. I get the correct result back when I enter the name with a wrong casing.
private static IObjectContainer db = Db4oFactory.OpenFile(db4oPath);
public static ...
0
votes
0answers
75 views
db4o duplicate objects
ive got problem with storing array item inside arrya item this is mine scenario(its example not all variables inside):
public class Contact
{
public string Description { get; set; }
public ...