active questions tagged db4o+c# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:04:34Z http://stackoverflow.com/feeds/tag/db4o+c# http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1826431/lambda-syntax-in-linq-to-db4o 1 Lambda syntax in linq to db4o? boris callens 2009-12-01T14:12:43Z 2009-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&lt;Apple&gt; SearchApples (AppleSearchbag bag){ var q = db.Apples; if(bag.Color != null){ q = q.Where(a=&gt;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/829132/db4o-replication-system-nullreferenceexception 0 db4o Replication System: NullReferenceException? virtualmic 2009-05-06T11:23:03Z 2009-05-06T11:23:03Z <p>Hi,</p> <p>I am trying to do standard bi-directional replication as follows. However, I get a NullReferenceException. This is a separate replication project. I did import the classes involved in the original project (such as Item, Category etc.) in this replication project. What am I doing wrong? (If I debug using VS, I can see that changedObjects does have all the changed objects; there seems to be some problem inside Replicate function)</p> <pre><code>IObjectContainer local = Db4oFactory.OpenFile(@"G:\Work\School\MIS\VINMIS\Inventory\bin\Debug\vin.db4o"); IObjectContainer far = Db4oFactory.OpenFile(@"\\crs-lap\c$\vinmis\vin.db4o"); ; IReplicationSession replication = Replication.Begin(local, far); IObjectSet changedObjects = replication.ProviderA().ObjectsChangedSinceLastReplication(); while(changedObjects.HasNext()) replication.Replicate(changedObjects.Next()); // Exception!!! replication.Commit(); changedObjects = replication.ProviderB().ObjectsChangedSinceLastReplication(); while (changedObjects.HasNext()) replication.Replicate(changedObjects.Next()); replication.Commit(); </code></pre> <p>Regards,</p> <p>Saurabh.</p> http://stackoverflow.com/questions/1689089/db4o-query-find-all-objects-with-id-anything-in-array 2 Db4o query: find all objects with ID = {anything in array} Judah Himango 2009-11-06T17:29:05Z 2009-11-12T22:24:12Z <p>I've stored 30,000 SimpleObjects in my database:</p> <pre><code>class SimpleObject { public int Id { get; set; } } </code></pre> <p>I want to run a query on DB4O that finds all SimpleObjects with any of the specified IDs:</p> <pre><code>public IEnumerable&lt;SimpleObject&gt; GetMatches(int[] matchingIds) { // OH NOOOOOOES! This activates all 30,000 SimpleObjects. TOO SLOW! var query = from SimpleObject simple in db join id in matchingIds on simple.Id equals id select simple; return query.ToArray(); } </code></pre> <p>How do I write this query so that DB4O doesn't activate all 30,000 objects?</p> http://stackoverflow.com/questions/773187/two-different-net-applications-cant-access-the-db4o-file 0 Two different .NET applications can't access the db4o file virtualmic 2009-04-21T15:31:16Z 2009-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/1381213/db4o-object-update 1 Db4o object update Miguel Ping 2009-09-04T19:48:51Z 2009-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&lt;Aim&gt; 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/681926/why-does-the-stringcomparison-invariantcultureignorecase-not-work-with-this-db4o 1 Why does the StringComparison.InvariantCultureIgnoreCase not work with this Db4o linq query? boris callens 2009-03-25T14:47:03Z 2009-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&lt;Company&gt; 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&lt;Company&gt; 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/226681/db4o-client-server-appears-to-only-be-able-to-process-one-query-at-a-time 1 db4o client/server appears to only be able to process one query at a time? Peter Mounce 2008-10-22T16:56:59Z 2009-09-14T21:38:28Z <p>We're evaluating db4o (an OO-DBMS from <a href="http://www.db4o.com" rel="nofollow">http://www.db4o.com</a>). We've put together a performance test for client/server mode, where we spin up a server, then hammer it with several clients at once. It seems like the server can only process one client's query at a time.</p> <p>Have we missed a configuration switch somewhere that allows for this scenario? Server implementation is below. The client connects, queries (read-only), and disconnects per operation, and operations run one immediately after the other from several worker threads in the client process. We see same behaviour if we spin up one client process with one worker each against the same server.</p> <p>Any suggestions?</p> <p>Edit: We've now discovered, and tried out, the Lazy and Snapshot QueryModes, and although this alleviates the blocking server problem (partially), we still see significant concurrency problems when our clients (we run 40 concurrent test-clients that wait 1-300ms before issuing a random operation-request) hammer on the server. There appear to be exceptions emanating from the LINQ provider and from the IO internals :-(</p> <pre><code> public class Db4oServer : ServerConfiguration, IMessageRecipient { private bool stop; #region IMessageRecipient Members public void ProcessMessage(IMessageContext con, object message) { if (message is StopDb4oServer) { Close(); } } #endregion public static void Main(string[] args) { //Ingestion.Do(); new Db4oServer().Run(true, true); } public void Run(bool shouldIndex, bool shouldOptimizeNativeQueries) { lock (this) { var cfg = Db4oFactory.NewConfiguration(); if (shouldIndex) { cfg.ObjectClass(typeof (Sequence)).ObjectField("k__BackingField").Indexed(true); cfg.ObjectClass(typeof (Vlip)).ObjectField("k__BackingField").Indexed(true); } if (shouldOptimizeNativeQueries) { cfg.OptimizeNativeQueries(true); } var server = Db4oFactory.OpenServer(cfg, FILE, PORT); server.GrantAccess("0", "kieran"); server.GrantAccess("1", "kieran"); server.GrantAccess("2", "kieran"); server.GrantAccess("3", "kieran"); //server.Ext().Configure().ClientServer().SingleThreadedClient(false); server.Ext().Configure().MessageLevel(3); server.Ext().Configure().Diagnostic().AddListener(new DiagnosticToConsole()); server.Ext().Configure().ClientServer().SetMessageRecipient(this); try { if (!stop) { Monitor.Wait(this); } } catch (Exception e) { Console.WriteLine(e.ToString()); } server.Close(); } } public void Close() { lock (this) { stop = true; Monitor.PulseAll(this); } } } </code></pre> http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req 0 Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T11:04:57Z 2009-12-06T06:13:40Z <p>In my asp.net-mvc application I'm trying to set up Turbine.<br> The initialization code goes as follows:</p> <pre><code>public class MvcApplication : TurbineApplication { static MvcApplication() { ServiceLocatorManager.SetLocatorProvider(() =&gt; new UnityServiceLocator()); } } </code></pre> and I have then a set of registrars comparable to the following one: <pre><code>public class UserRepositoryRegistration : IServiceRegistration { public void Register(IServiceLocator locator) { locator.Register&lt;IUserRepository, Db4oUserRepository&gt;(); } } </code></pre> If I try to run, I get the following error somewhere after the SetLocatorProvider, but before entering any of the register methods: <blockquote> <p>Server Error in '/' Application.</p> <p>Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. </p> <p>Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p> <p>Exception Details: System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.</p> <p>Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. </p> <p>Stack Trace: </p> <pre> [ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.] System.Reflection.Module._GetTypesInternal(StackCrawlMark& stackMark) +0 System.Reflection.Assembly.GetTypes() +105 MvcTurbine.ComponentModel.DefaultAutoRegistrator.AutoRegister(ServiceRegistration serviceRegistration) +338 MvcTurbine.Web.RotorContext.ProcessAutomaticRegistration(AutoRegistrationList registrationList) +155 MvcTurbine.Web.RotorContext.AutoRegistrationForContext() +163 MvcTurbine.Web.RotorContext.Turn() +37 MvcTurbine.Web.TurbineApplication.ExecuteContext() +43 MvcTurbine.Web.TurbineApplication.TurnRotor() +65 MvcTurbine.Web.TurbineApplication.Application_Start(Object sender, EventArgs e) +85 </pre> <p></blockquote></p> <p><strong>UPDATE</strong><br> Narrowed down the problem library to Db4objects.Db4o.Linq.dll As soon as I have this library as a references (not even "using", just added to references) in one of my libraries that is referenced in my mvc webapplication I get the above mentioned YSOD. All other Db4o libraries work just fine.</p> <p><strong>METTRE À JOUR</strong><br> Tried swapping the UnityServiceLocator with the WindsosServiceLocator and the NinjectServiceLocator. Exact same results, so more then likely the problem doesn't originate in either of the libs.</p> <p><strong>OPPDATERING</strong><br> To recreate the error page it suffices to take the following steps:</p> <ul> <li>Create new Mvc application (doesn't matter wat version)</li> <li>Alter gloabal.asax.cs code to use MvcTurbine and add needed MvcTurbine libs<br> You will find everything still works as expected</li> <li>Add Db4objects.Db4o.dll<br> Still everything works</li> <li>Add Db4objects.Db4o.linq.dll<br> YSOD</li> </ul> <p>Any ideas on where and how to debug this?</p> http://stackoverflow.com/questions/1137955/opening-objects-with-a-renamed-namespace-assembly-in-db4o 0 Opening objects with a renamed namespace/assembly in db4o Chris S 2009-07-16T14:21:31Z 2009-08-05T00:00:01Z <p>I have a set of objects in db4o format in a .dat file. The objects in that file are OldNamespace.MyObject, OldAssemblyName.</p> <p>The problem is I've sinced renamed the namespace and assembly to something more permanent. Short of renaming the assembly and namespace (which is what I'm doing), is there a way of opening the objects into the new assembly/namespace names?</p> <p>Or am I stuck forever with "MyTest3" for the assembly name and namespace?!</p> http://stackoverflow.com/questions/1149725/execute-a-select-top-n-in-db4o 0 Execute a "SELECT TOP n" in DB4O Pedro Santos 2009-07-19T11:44:19Z 2009-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/313036/generic-class-used-as-constraint-to-generic-method-in-c 0 Generic class used as constraint to generic method in C#? Mike Moore 2008-11-23T22:18:05Z 2008-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&lt;MyCollection1&gt;(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&lt;T&gt;(string)'. There is no implicit reference conversion from'GenericsTest.MyCollection1' to 'GenericsTest.MyCollectionBase&lt;GenericsTest.MyCollection1&gt;'. </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&lt;T&gt; : Collection&lt;T&gt; { protected MyCollectionBase() : this("") { } protected MyCollectionBase(string pCollectionName) { CollectionName = pCollectionName; } public string CollectionName { get; set; } } public class MyCollection1 : MyCollectionBase&lt;Entity1&gt; { public MyCollection1(string pCollectionName) : base(pCollectionName) { } public void DoSomeWorkOnCollection1() {} } public class MyCollection2 : MyCollectionBase&lt;Entity2&gt; { 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&lt;MyCollection1&gt;(Collection1Name); } private static T GetCollectionFromDb&lt;T&gt;(string pCollectionName) where T : MyCollectionBase&lt;T&gt; { IList&lt;T&gt; queryResult = db.Query((T c) =&gt; c.CollectionName == pCollectionName); if (queryResult.Count != 0) return queryResult[0]; return null; } } } </code></pre> http://stackoverflow.com/questions/928597/trouble-with-db4o-objects-arent-returned-after-an-iis-reset-container-is-out-o 1 Trouble with db4o...objects aren't returned after an IIS reset/container is out of scope. JC Grubbs 2009-05-30T00:00:55Z 2009-10-13T10:59:33Z <p>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 container object goes out of scope (due to an IIS reset or whatever) I can no longer retrieve any of the objects that I previously persisted. Within the scope of a "session" I can retrieve everything but as soon as that "session" dies then nothing is returned. What's odd is that the database file continues to grow in size so I know everything is in there it just never gets returned after the fact. Any idea what's going on?</p> <p>Here is my generic wrapper for db4o:</p> <pre><code>public class DataStore : IDisposable { private static readonly object serverLock = new object(); private static readonly object containerLock = new object(); private static IObjectServer server; private static IObjectContainer container; private static IObjectServer Server { get { lock (serverLock) { if (server == null) server = Db4oFactory.OpenServer(ConfigurationManager.AppSettings["DatabaseFilePath"], 0); return server; } } } private static IObjectContainer Container { get { lock (containerLock) { if (container == null) container = Server.OpenClient(); return container; } } } public IQueryable&lt;T&gt; Find&lt;T&gt;(Func&lt;T, bool&gt; predicate) { return (from T t in Container where predicate(t) select t).AsQueryable(); } public IQueryable&lt;T&gt; Find&lt;T&gt;() { return (from T t in Container select t).AsQueryable(); } public ValidationResult Save(IValidatable item) { var validationResult = item.Validate(); if (!validationResult.IsValid) return validationResult; Container.Store(item); return validationResult; } public void Delete(object item) { Container.Delete(item); } public void Dispose() { Server.Close(); Container.Close(); } } </code></pre> http://stackoverflow.com/questions/488266/isnt-the-db4o-openfile-method-supposed-to-create-the-filestructure-if-it-doesn 0 isn't the db4o .OpenFile method supposed to create the filestructure if it doesn't exist? Chance 2009-01-28T16:21:54Z 2009-03-20T15:02:37Z <p>When using Db4oFactiory.OpenFile("somename"); it was trying to drop the folder "somename" into the visual studio directory and getting denied permission. I solved this by giving it an absolute path: </p> <pre><code> db = Db4oFactory.OpenFile("E:/test-projects/db4o/db"); </code></pre> <p>and now I'm catching a FileNotFoundException but the db4o docs explicitly say that if there isnt a db already in play, that OpenFile will generate them. What am I missing?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1616341/db4o-can-i-save-a-string 1 Db4O - Can I save a String? Miguel Ping 2009-10-23T22:58:32Z 2009-12-04T05:22:24Z <p>I have the following code:</p> <pre><code> Assert.IsTrue(Repository.FindAll&lt;string&gt;().Count() == 0); string newString = "New String"; Repository.Save(newString); Assert.IsTrue(Repository.FindAll&lt;string&gt;().Count() == 1); </code></pre> <p>But it is failing. I suppose it has something to do with the fact that I'm saving a string.</p> <p>My Save() code is this:</p> <pre><code> public void Save&lt;T&gt;(T obj) { if (obj == null) throw new ArgumentNullException("obj not allowed to be null"); Db.Store(obj); Db.Commit(); } </code></pre> <p>Should my persistent classes have something special? Or I can just save pretty much anything with db4o?</p> http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o 2 Querying by type in DB4O Shaharyar 2009-06-22T13:43:53Z 2009-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>