1
vote
1answer
45 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
4answers
156 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:
…
1
vote
1answer
62 views
Improve db4o linq query
Hello,
I got a problem with this linq query:
from PersistedFileInfo fi in m_Database
from PersistedCommit commit in m_Database
where commit.FileIDs.Contains( fi.ID )
where fi.Path == <given …
0
votes
3answers
139 views
Conditional clauses for linq to Db4O query?
In linq to sql i can do like this:
var q = db.Colors;
if(! string.IsNullOrEmpty(colorName))
q = q.Where(c=>c.Name.Equals(colorName));
return q.ToList();
In Db4O linq I can't do it like this …
1
vote
1answer
183 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 …
