1
vote
1answer
57 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
23 views
Maintaining backwards compatibility with my object database?
I am writing an application using an object database (db4o) and in agile fashion will be starting from a small, minimal implementation and iteratively adding features from there, while releasing new …
0
votes
4answers
103 views
Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements?
In my pet project I want to have a user system with the following requirements:
It needs to work with Db4o as a persistance model
I want to use DI (by means of Turbine) to deliver the needed …
0
votes
4answers
105 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
27 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
41 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
59 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
138 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
105 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
89 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
67 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
80 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
61 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 …
