Tagged Questions

3
votes
2answers
328 views

Working with large collections in db40 (.net)

I would like to use db4o as the backend of a custom cache implementation. Normally my program involves loading into memory some 40,000,000 objects and working on them simultaneously. Obviously this ...
2
votes
1answer
97 views

How do you exclude a property in a persistent object in db4o using C#?

Since "[Transient]" does not really work on properties. What do I do now?
2
votes
1answer
126 views

Replacing a db4o stored object with an instance of a subclass

I want to change all objects that match a condition to use a specific/new subclass. There are no other subclasses being used with the stored objects, so its in all cases a change from the base class ...
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
4answers
655 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", ...
2
votes
1answer
754 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 ...
1
vote
1answer
56 views

Class design for a media manager application usig Db4o for efficient querying

I am a novice programmer and need some help with class design for my application. We are working on the design of a media manager desktop application (using .NET Framework 4.0) . The application ...
1
vote
1answer
41 views

How to efficiently retrieve every Nth object from DB4O ordered on an indexed field

I store a lot of events in a DB4O db. The events are timestamped and I've indexed the field. Retrieving (an enumerator of) all events, ordered by timestamp, takes almost no time at all (as they aren't ...
1
vote
1answer
67 views

db4o How to rename class via configuration

I am using db4o in two seperate projects that share the same classes but not the same .dll . I am fixing this so that they share the same .dll but I need to rename the classes. According to the ...
1
vote
2answers
212 views

Retrieve an object in one DB4O session, store in another ('disconnected scenario')

I am trying to figure out how to keep an object useable between client sessions in DB4O. From what I understand, once a client session is closed, the object no longer resides in any cache and despite ...
1
vote
2answers
144 views

db4o - ignore specific class property

Is there a way (meta property maybe) to tell db4o to simply ignore a specific property of a class? I can't see anywhere to do that.. For my purpose I have a bunch of data entity that i need to ...
1
vote
1answer
338 views

How to use db4o IObjectContainer in a web application ? (Container lifetime ?)

I am evaluating db4o for persistence for a ASP .NET MVC project. I am wondering how I should use the IObjectContainer in a web context with regards to object lifetime. As I see it, I can do one of ...
1
vote
1answer
33 views

Stored IEnumerable dissapears on restart debug, but recreating IObjectServer and IObjectClient in one unit test is ok

I'm storing an IUser object in a Db4o database as follows (client is an IObjectClient): public Guid AddUser(IUser user) { lock (userLock) { user.Id = Guid.NewGuid(); ...
1
vote
1answer
656 views

Db4o object update

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 void ...
1
vote
2answers
373 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#
0
votes
2answers
98 views

Can I query db4o for all objects implementing some interface?

i have a problem with db4o and I wanna know is it feature or bug. Let's see some code private interface IInterface {} private class SimpleObject : IInterface {} ...
0
votes
2answers
100 views

which specific conditions could cause a db4o's native query transformation bug?

This fails: var results = container.Query<SomeClass>(s => s.Field == value && s.AnEnumField != SomeEnum.AnEnumValue ); Assert.AreEqual(1, results.Count); But this doesn't: ...
0
votes
2answers
118 views

how to check for an empty collection in a db4o's SODA query

As the title says, is there a way to check for an empty collection in a SODA query? I can check if the collection field is set to null and check property values in the collection elements, but don't ...
0
votes
1answer
90 views

determining when a db4o backup has finished

How can I know when a db4o started from code has finished? Doc mentions it does the backup in a separate thread, but doesn't mention anything about when it finishes. The method doesn't receives any ...
0
votes
2answers
209 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
2answers
4k 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 ...