Tagged Questions

12
votes
3answers
1k views

Why is EF4 Code First so slow when storing objects?

I'm currently doing some research on usage of db4o a storage for my web application. I'm quite happy how easy db4o works. So when I read about the Code First approach I kinda liked is, because the way ...
3
votes
1answer
81 views

Basic db4o issues

I am very very new to db4o, and c# in general, and am having real trouble getting my head around how to start using it - the tutorial provided isn't helping me a lot - I understand the jist of it, but ...
3
votes
1answer
164 views

db4o, how to update an object if a field was added?

How can I do this? I stored an object in db4o, e.g: class Person { string _name; int _age; } now, after hundrets of Persons stored in the db, I've added a new field: class Person { ...
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 ...
3
votes
1answer
263 views

UniqueConstraint in EmbeddedConfiguration

I just started using db4o on C#, and I'm having trouble setting the UniqueConstraint on the DB.. here's the db4o configuration static IObjectContainer db = ...
3
votes
4answers
1k 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: ...
2
votes
2answers
62 views

Db4o - refresh ALL new objects in persistent session

is it possible in Db4o to load new objects into persistent IObjectContainer? I have a desktop application which opens one connection (IObjectContainer) when started. if I query all objects with: ...
2
votes
2answers
387 views

DB4O scalability

I'm looking for information about DB4O object database. I know it has client/server mode, but I have no idea how scalable it is. I'm a big lover of object db idea, but still couldn't find an ...
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
122 views

db4o SODA compare field values

class SomeClass { private DateTime fieldA; private DateTime fieldB; } Using SODA, what is the proper way to select all objects whose fieldA is greater than fieldB? Something like this? var ...
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
3answers
318 views

What is causing this DatabaseFileLockedException when trying to open a db4o database in an ASP.NET MVC app?

I'm building a small web application with ASP.NET MVC 2, using db4o as a datastore. I have added an HttpModule—as per the example here—to give the application access to the db4o database, and ...
2
votes
2answers
520 views

Db4o StartsWith and ignore case

The following query takes a while to return: db.Query<Person>(x => x.StartsWith("Chr", StringComparison.CurrentCultureIgnoreCase)) is there a way to get this working correctly? ie faster?
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
133 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 since renamed the namespace and assembly to something ...
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
110 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 ...
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 ...
2
votes
0answers
2k 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 ...
1
vote
1answer
55 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
101 views

Db4o and object identity

I'm learning db4o data base, I'm planing to use it 3-tier project. I don't fully understand the concept of object identity in db4o. Suppose we have a class like this: public class User { public ...
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
3answers
220 views

unsupported class hierarchy change in Db4o

I have: static class Db4o... and: class Db4oBase... // which uses Db4o class where I can: class Customer : Db4oBase { public Customer(string name) { } } so that I can: Customer ...
1
vote
1answer
122 views

Storing TimeSpan in db4o

I know that TimeSpan's are immutable. I have a object which contains a TimeSpan field. This field is updated frequently. Every time I update the object in the db, db4o updates the TimeSpan field. So ...
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
0answers
216 views

db4o field indexed, but not used in queries

I have a simple object with a Guid as field public Guid _id, this field is indexed. config.Common.ObjectClass(typeof(ConfigurableObject)) .ObjectField("_id").Indexed(true); When I open the ...
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
153 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
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
1answer
40 views

db4o error “Unexpected char '@'”

DB4O appears to be chocking on a string that has the "@" symbol in it. The error message I am getting is "Unexpected char '@'." Does anyone know what causes this? I've done research on Google and did ...
0
votes
1answer
44 views

db4o does not delete the record

Good day! Try db4o, faced with this problem: I can not delete records: using (IObjectServer server = Db4oClientServer.OpenServer(HttpContext.Current.Server.MapPath("~/transfers.data"), 0)) ...
0
votes
0answers
75 views

db4o duplicate objects

ive got problem with storing array item inside arrya item this is mine scenario(its example not all variables inside): public class Contact { public string Description { get; set; } public ...
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
211 views

DB4O: Need to use GenericList<T> outside of using block of connection

I am using DB4O to store my objects. Please find below code to retrieve objects from DBO4 DB. public IList<T> GetList<T>() { IList<T> list = null; ...
0
votes
1answer
220 views

Db4O activation depth, Faq, Best Practise for Web Application

Our database includes 4,000,000 records (sql server) and it's physical size is 550 MB . Entities in database are related each other as graph style. When i load an entity from db with 5 level depth ...
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
0answers
119 views

How to retrieve objects typed in dynamic assembly from db4o database?

In my experiment, I saved some objects of an emitted type, which subclassed a type in the entry assembly, like the one below: ///normal assembly public class Person{ public string Name; public int ...
0
votes
0answers
230 views

Slow db4o query

I have a database with a lot of sensor-logs (+10000). If I constrain the query to a specific date-time range, it becomes horrible slow. How to speed this up? It takes about ~150ms on my development ...
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
811 views

db4o Indexing problem - Not Working? Poor performance?

I'm attempting to use db4o as the back-end for my new website. I've set things up, as I thought sensible, and have inserted about 5k records (of only one object type, with about 7 primitive fields). ...
0
votes
4answers
522 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() { ...
0
votes
1answer
104 views

db4o Replication System: NullReferenceException?

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 original ...
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
1answer
253 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: ...
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 ...