hot questions tagged db4o+.net - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T06:50:09Zhttp://stackoverflow.com/feeds/tag?tagnames=db4o%2b.net&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1826431/lambda-syntax-in-linq-to-db4o1Lambda syntax in linq to db4o?boris callens2009-12-01T14:12:43Z2009-12-01T14:42:47Z
<p>I know the following is possible with linq2db4o</p>
<pre><code>from Apple a in db
where a.Color.Equals(Colors.Green)
select a
</code></pre>
<p>What I need however is something that allows me to build my query conditionally (like I can in other linq variants)</p>
<pre><code>public IEnumerable<Apple> SearchApples (AppleSearchbag bag){
var q = db.Apples;
if(bag.Color != null){
q = q.Where(a=>a.Color.Equals(bag.Color));
}
return q.AsEnumerable();
}
</code></pre>
<p>In a real world situation the searchbag will hold many properties and building a giant if-tree that catches all possible combinations of filled in properties would be madman's work.</p>
<p>It is possible to first call</p>
<pre><code>var q = (from Color c in db select c);
</code></pre>
<p>and then continue from there. but this is not exactly what I'm looking for.</p>
<p>Disclaimer: near duplicate of <a href="http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query">my question</a> of nearly 11 months ago.<br>
This one's a bit more clear as I understand the matter better now and I hope by now some of the db4o dev eyes could catch this on this:</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1620355/a-few-questions-about-working-with-db4o2A few questions about working with db4oMax2009-10-25T08:26:52Z2009-11-12T23:20:24Z
<p>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 <a href="http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499">http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499</a> indicating that not everything that seems so easy is easy. </p>
<p>Right now, I have some questions regarding on how db4o is used in real world apps. So if you have any experience in working (especially in web app context) with db4o, I would love to hear them.</p>
<p>Here are my questions:</p>
<p><strong>How do you manage object identity when working with db4o stored objects?</strong><br />
Coming from RDBMS background where you normally always have a primary key / identity column for every table, I cant imagine right now on how to manage object identity in db4o. </p>
<p>For example, if I was working with NHibernate / mysql and needed to find a User object by id, I would do session.Load(primaryKey) and it will be retrieved by its PK. It is also very common that the PK is defined as auto increment in the table definition. </p>
<p>As there is no such option in db4o, my thought was using a Guid struct in order to identify some objects in the object database. </p>
<p><strong>Any tools to view the stored objects in the db?</strong><br />
Is there something like SQL Server Management Studio (probably less sophisticated) in the db4o world? I would like to view the already stored data / objects in the db file.</p>
<p><strong>Are you screwed when renaming your domain objects?</strong><br />
As far as I know when you rename a class, any previously stored instances in the db cannot be retrieved anymore. Is there a way to work around this issue? How do you deal with updates against a live database which already contains many objects?</p>
<p><hr /></p>
<p>EDIT:</p>
<p>I almost forgot this one:</p>
<p><strong>Can I exclude properties from being saved to the DB?</strong><br />
If for example one domain object holds a reference to a (stateless) service object, then the service object will also be persisted if the domain object gets persisted, right? </p>
<p>It seems a bit odd to have a service instace saved in the database, at least to me. Can you exclude the service instance from being saved? But if the domain object is retrieved again, how can I make sure that the service is also injected in the instance again?</p>
http://stackoverflow.com/questions/1381213/db4o-object-update1Db4o object updateMiguel Ping2009-09-04T19:48:51Z2009-10-23T10:00:03Z
<p>Hi,</p>
<p>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?</p>
<p>Here's the code:</p>
<pre><code>[Test]
public void NonReferenceTest()
{
Aim localAim = new Aim("local description", null);
dao.Save(localAim);
// changing the local value should not alter what we put into the dao
localAim.Description = "changed the description";
IQueryable<Aim> aims = dao.FindAll();
var localAim2 = new Aim("local description", null);
Assert.AreEqual(localAim2, aims.First());
}
</code></pre>
<p>The test fails. Do I need to setup the db4o container in any special way? wrap it in commit calls? Thanks</p>
http://stackoverflow.com/questions/1149725/execute-a-select-top-n-in-db4o0Execute a "SELECT TOP n" in DB4OPedro Santos2009-07-19T11:44:19Z2009-09-18T20:02:31Z
<p>Does anyone know how how to execute something like a "SELECT TOP n" in DB4O in C#</p>
http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o2Querying by type in DB4OShaharyar2009-06-22T13:43:53Z2009-06-22T14:43:09Z
<p>How do you pass a class type into a function in C#?</p>
<p>As I am getting into db4o and C# I wrote the following function after reading the tutorials:</p>
<pre><code> public static void PrintAllPilots("CLASS HERE", string pathToDb)
{
IObjectContainer db = Db4oFactory.OpenFile(pathToDb);
IObjectSet result = db.QueryByExample(typeof("CLASS HERE"));
db.Close();
ListResult(result);
}
</code></pre>
http://stackoverflow.com/questions/681926/why-does-the-stringcomparison-invariantcultureignorecase-not-work-with-this-db4o1Why does the StringComparison.InvariantCultureIgnoreCase not work with this Db4o linq query?boris callens2009-03-25T14:47:03Z2009-03-25T14:52:40Z
<p>The following query works. I get the correct result back when I enter the name with a wrong casing.</p>
<pre><code>private static IObjectContainer db = Db4oFactory.OpenFile(db4oPath);
public static IQueryable<Company> GetCompaniesByName(string name) {
return (from Company c in db
where c.Name.ToLowerInvariant().Equals(name.ToLowerInvariant())
select c).AsQueryable();
}
</code></pre>
<p>The following query with the same parameter (basically the same unit test) returns no results. Mark the only difference is the where clause.</p>
<pre><code> public static IQueryable<Company> GetCompaniesByName(string name) {
return (from Company c in db
where c.Name.Equals(name, StringComparison.InvariantCultureIgnoreCase)
select c).AsQueryable();
}
</code></pre>
<p>Why?</p>
http://stackoverflow.com/questions/313036/generic-class-used-as-constraint-to-generic-method-in-c0Generic class used as constraint to generic method in C#?Mike Moore2008-11-23T22:18:05Z2008-11-23T22:53:05Z
<p>Am I doing something wrong or is it not possible to specify a generic class as a constraint to a generic method?</p>
<p>I have been playing around with generics and <a href="http://developer.db4o.com/" rel="nofollow">db4o</a> (open source object database) and am writing a test program (see code below) to store and retrieve some user defined generic collections.</p>
<p>I am attempting to write a generic method (see <strong>GetCollectionFromDb</strong> below) to retrieve a specifically typed collection from the database. Unfortunately, the code below returns a compiler generated error for the line:</p>
<pre><code> MyCollection1 collection3 =
GetCollectionFromDb<MyCollection1>(Collection1Name);
</code></pre>
<p>The error message is:</p>
<pre><code>The type 'GenericsTest.MyCollection1'cannot be used as type parameter 'T'
in the generic type or method 'GenericsTest.Program.GetCollectionFromDb<T>(string)'.
There is no implicit reference conversion from'GenericsTest.MyCollection1' to
'GenericsTest.MyCollectionBase<GenericsTest.MyCollection1>'.
</code></pre>
<p>I would appreciate any suggestions as to what I may be doing wrong or how I could approach this differently to reach the deisred outcome.</p>
<pre><code>using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using Db4objects.Db4o;
namespace GenericsTest
{
public class Entity1
{
public string SomeProperty { get; set; }
}
public class Entity2
{
public string SomeProperty { get; set; }
}
public abstract class MyCollectionBase<T> : Collection<T>
{
protected MyCollectionBase() : this("") { }
protected MyCollectionBase(string pCollectionName)
{
CollectionName = pCollectionName;
}
public string CollectionName { get; set; }
}
public class MyCollection1 : MyCollectionBase<Entity1>
{
public MyCollection1(string pCollectionName) :
base(pCollectionName) { }
public void DoSomeWorkOnCollection1() {}
}
public class MyCollection2 : MyCollectionBase<Entity2>
{
public MyCollection2(string pCollectionName) :
base(pCollectionName) { }
public void DoSomeWorkOnCollection2() { }
}
public class Program
{
public static IObjectContainer db = null;
public static void Main(string[] args)
{
const string Collection1Name = "Entity1Collection";
const string Collection2Name = "Entity2Collection";
db = Db4oFactory.OpenFile("Test.db");
Entity1 entity1 = new Entity1();
MyCollection1 collection1 = new MyCollection1(Collection1Name);
collection1.Add(entity1);
db.Store(collection1);
Entity2 entity2 = new Entity2();
MyCollection2 collection2 = new MyCollection2(Collection2Name);
collection1.Add(entity1);
db.Store(collection2);
db.Commit();
db.Close();
db = Db4oFactory.OpenFile("Test.db");
MyCollection1 collection3 =
GetCollectionFromDb<MyCollection1>(Collection1Name);
}
private static T GetCollectionFromDb<T>(string pCollectionName)
where T : MyCollectionBase<T>
{
IList<T> queryResult = db.Query((T c) =>
c.CollectionName == pCollectionName);
if (queryResult.Count != 0) return queryResult[0];
return null;
}
}
}
</code></pre>
http://stackoverflow.com/questions/773187/two-different-net-applications-cant-access-the-db4o-file0Two different .NET applications can't access the db4o filevirtualmic2009-04-21T15:31:16Z2009-04-21T15:34:43Z
<p>I have just downloaded and and am using db40 7.9 and am testing it on two different .NET 3.5 applications using the supplied tutorial.</p>
<p>When I access the same database (c:\pilot.db4o) file using these two applications, one after the other, each one is reflecting only the changes made by that application, even if those changes were made during the previous run.</p>
<p>Why is each Application not seeing changes the other application made to the database file?</p>
http://stackoverflow.com/questions/300987/how-do-you-do-data-management-tasks-in-a-db4o-object-database2How do you do data management tasks in a Db4o Object Database?JC Grubbs2008-11-19T04:28:00Z2009-02-06T09:19:05Z
<p>I'm new to OODBMS systems, but I'm using Db4o on a new project for which it's perfectly suited. Things are going great and I really like the concept, but I'm struggling with how to do basic data management tasks associated with development. Periodically I want to wipe out all of a certain Type in the DB, how do I do this without actually writing a method in code to do it and then running my app? Also, how do I address "schema" changes. If I change the definition of a particular class, does Db4o create a new "table" for it, or does it recognize it as the same Type with just a different set of members?</p>
<p>Btw...I'm in .NET 3.5</p>