Tagged Questions
3
votes
1answer
204 views
DB4o Linq query - How to check for null strings
var q = (from SomeObject o in container
where
o.SomeInt > 8
&& o.SomeString != null //Null Ref here
select o;
I always get a null reference exception.
If I use ...
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
756 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 ...