2
votes
4answers
71 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 th …
3
votes
2answers
71 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 ?
2
votes
1answer
38 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/2 …
1
vote
1answer
76 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:
…
1
vote
1answer
49 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.Pat …
0
votes
1answer
61 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 wor …
3
votes
6answers
320 views
How to design many-to-many relationships in an object database?
I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library.
Consider the following objects: Book, Category.
A …
0
votes
2answers
109 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
121 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 readin …
0
votes
1answer
53 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 as …
2
votes
4answers
154 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 PrintAllPi …
0
votes
1answer
61 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 …
1
vote
1answer
51 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 …
0
votes
3answers
130 views
Conditional clauses for linq to Db4O query?
In linq to sql i can do like this:
var q = db.Colors;
if(! string.IsNullOrEmpty(colorName))
q = q.Where(c=>c.Name.Equals(colorName));
return q.ToList();
In Db4O linq I can …
2
votes
1answer
109 views
Saving images or pdfs in db4o
I know it is not a good thing to save files in a relational databas.
But how about in a objectdatabase?
Is it still a bad idea or are they more adapted for this kind of operations? …
