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
1answer
69 views
A few questions about working with db4o
I am trying the db4o object databse and so far I quite like what I am seeing, but I also read this post on stackoverflow http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499 …
1
vote
1answer
90 views
Db4o object update
Hi,
I'm using db4o for a simple app, with an embedded db. When I save an object, and then change the object, is it suppose that db4o returns the changed object?
Here's the code:
[Test]
public …
0
votes
2answers
125 views
Execute a “SELECT TOP n” in DB4O
Does anyone know how how to execute something like a "SELECT TOP n" in DB4O in C#
2
votes
4answers
172 views
Querying by type in DB4O
How do you pass a class type into a function in C#?
As I am getting into db4o and C# I wrote the following function after reading the tutorials:
public static void PrintAllPilots("CLASS HERE", …
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 …
0
votes
2answers
866 views
Generic class used as constraint to generic method in C#?
Am I doing something wrong or is it not possible to specify a generic class as a constraint to a generic method?
I have been playing around with generics and db4o (open source object database) and am …
0
votes
0answers
76 views
Two different .NET applications can’t access the db4o file
I have just downloaded and and am using db40 7.9 and am testing it on two different .NET 3.5 applications using the supplied tutorial.
When I access the same database (c:\pilot.db4o) file using these …
2
votes
1answer
186 views
How do you do data management tasks in a Db4o Object Database?
I'm new to OODBMS systems, but I'm using Db4o on a new project for which it's perfectly suited. Things are going great and I really like the concept, but I'm struggling with how to do basic data …
