Tagged Questions

0
votes
4answers
109 views

Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception

In my asp.net-mvc application I'm trying to set up Turbine. The initialization code goes as follows: public class MvcApplication : TurbineApplication { static MvcApplication() { …
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
28 views

Db4O - Can I save a String?

I have the following code: Assert.IsTrue(Repository.FindAll<string>().Count() == 0); string newString = "New String"; Repository.Save(newString); …
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#
1
vote
1answer
58 views

Trouble with db4o…objects aren’t returned after an IIS reset/container is out of scope.

So I'm probably doing something tragically wrong with db4o to cause this issue to happen...but every time I reset my context I lose all of my objects. What I mean by this is that as soon as my …
0
votes
1answer
55 views

Opening objects with a renamed namespace/assembly in db4o

I have a set of objects in db4o format in a .dat file. The objects in that file are OldNamespace.MyObject, OldAssemblyName. The problem is I've sinced renamed the namespace and assembly to something …
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
3answers
566 views

db4o client/server appears to only be able to process one query at a time?

We're evaluating db4o (an OO-DBMS from http://www.db4o.com). We've put together a performance test for client/server mode, where we spin up a server, then hammer it with several clients at once. It …
0
votes
1answer
107 views

isn’t the db4o .OpenFile method supposed to create the filestructure if it doesn’t exist?

When using Db4oFactiory.OpenFile("somename"); it was trying to drop the folder "somename" into the visual studio directory and getting denied permission. I solved this by giving it an absolute path: …
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
864 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 …
0
votes
0answers
31 views

db4o Replication System: NullReferenceException?

Hi, I am trying to do standard bi-directional replication as follows. However, I get a NullReferenceException. This is a separate replication project. I did import the classes involved in the …