0
votes
4answers
86 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
94 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
40 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 …
1
vote
1answer
24 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);
…
2
votes
4answers
115 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:
…
3
votes
2answers
94 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
51 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 …
1
vote
1answer
87 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 …
3
votes
6answers
332 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 Book can be in 0-n …
1
vote
1answer
60 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 …
0
votes
1answer
71 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 …
0
votes
2answers
118 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
132 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
1answer
54 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 assembly to something …
2
votes
4answers
159 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", …
