Tagged Questions

4
votes
1answer
585 views

linq to Db4o not using index

I'm trying db4o and i'm having bad performance when using linq to db4o. (using 7.12) Here is my configuration : var configuration = Db4oFactory.Configure(); ...
3
votes
1answer
204 views

DB4o Linq query - How to check for null strings

var q = (from SomeObject o in container where o.SomeInt > 8 && o.SomeString != null //Null Ref here select o; I always get a null reference exception. If I use ...
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
551 views

db4o, Linq, and UUID's

Apparently the db4o website was recently redone, and now old urls are giving 404 errors. Everytime I think I've found the answer, I get a 404 error. I have a simple db4o database I've setup to store ...
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
182 views

Improve db4o linq query

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 path> ...
2
votes
1answer
758 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 ...
1
vote
2answers
72 views

Comparing features in a asp.net web application using different database technologies

I have a webstore which sells components (it is a academic project) which looks like this. I have developed the same web application using following database technologies: MS Sql Server with Stored ...
1
vote
2answers
122 views

Method to do a “join” when using LINQ in db4o?

Whats the correct LINQ to navigate to the end leaf node of the following data structure? Root ----Symbol (APPLE) | |------Day 1: Date: 2010-10-18, string "Apples on ...
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
1answer
163 views

db4o: LINQ equivalent of SODA query?

For db4o, I'm trying to find the LINQ code that generates the following SODA: var query = db4o.db.Query(); query.Descend("Symbol"); ...
0
votes
1answer
155 views

Using LINQ to query nested classes in db4o?

Run into a tricky problem with db4o and a simple nested structures. Problem: when I use LINQ to pull data out of db4o, its pulling out too much data (i.e. the "where" clause doesn't seem to be ...
0
votes
3answers
315 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't do it like this ...