1
vote
1answer
35 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 …
0
votes
1answer
7 views
Client Server Assembly Missing? Db4Objects 7.4
I have downloaded the current version of Db4Objects (7.4) and installed it. It appears to be missing the Client Server assembly Db4objects.Db4o.CS.dll
Does anyone know if Client Server has changed …
2
votes
1answer
46 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 …
2
votes
4answers
102 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:
…
0
votes
0answers
10 views
Can you recommend a good resource for configuring db40 on Mono / Open SUSE?
The db40 forums seem to have sparse activity. I am seeking a blog post, article, or your input on how you installed and configured db40 for Mono on the Open SUSE / Ubuntu platform. I am a Linux n00b …
3
votes
2answers
84 views
Is Using Db4o For Web Sites a judicious choice?
Is using Db4o as a backend datastore for a Web site (ASP.NET MVC) a judicious choice as an alternative to MS SQL Server ?
1
vote
1answer
84 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
1answer
64 views
db4o to preserve identity of objects.
Is there a way to preserve an objest identity in db4o.
Suppose I store a BigDecimal in embedded db4o.
When I read it twice I get two distict objects with the same value (which is quite obvious).
Is …
0
votes
1answer
67 views
DB4O with Silverlight RIA Services
Hello,
I've considered using the db4o OODBMS with a recent Silverlight / RIA Services project, but there's one point that I could use some advice on - how to make associations work. RIA Services …
1
vote
1answer
53 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 …
1
vote
1answer
56 views
Improve db4o linq query
Hello,
I got a problem with this linq query:
from PersistedFileInfo fi in m_Database
from PersistedCommit commit in m_Database
where commit.FileIDs.Contains( fi.ID )
where fi.Path == <given …
2
votes
2answers
162 views
db4o concerns
I'm interested in using db4o as my persistence mechanism in my Desktop application but I'm concerned about a couple things.
1st concern: Accidentally clipping very complex object graphs.
Say I have …
0
votes
1answer
127 views
db4o running in asp.net Medium Trust environment
I am using the embedded client/server version of db4o (I called OpenServer() instead of OpenFile() method) so that I can host an asp.net website that will have several users reading and writing to the …
0
votes
2answers
113 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
3answers
529 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 …
