hot questions tagged db4o+linq - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T10:02:56Z http://stackoverflow.com/feeds/tag?tagnames=db4o%2blinq&sort=hot 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/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/1363590/improve-db4o-linq-query 1 Improve db4o linq query tanascius 2009-09-01T17:07:02Z 2009-10-13T10:50:59Z <p>Hello,</p> <p>I got a problem with this linq query:</p> <pre><code>from PersistedFileInfo fi in m_Database from PersistedCommit commit in m_Database where commit.FileIDs.Contains( fi.ID ) where fi.Path == &lt;given path&gt; select new Commit( m_Storage, commit ); </code></pre> <p>As you can see, every <code>PersistedCommit</code> contains a <code>Collection&lt;int&gt;</code> called <code>FileIDs</code> which connects it to its <code>PersistedFileInfo</code>s. I want to select all previous commits of a specific fileInfo (which is identified by its path).</p> <p>I have about 800 <code>PersistedFileInfo</code>s and 10 <code>PersistedCommit</code>s. The query takes about 1.5 seconds - which is in my opition far too long. The contructor of the <code>Commit</code>-object saves only the two given arguments - so there is no timeloss, here.</p> <p>My question:<br /> Can this query be rewritten to perform better - or is it a db4o problem (use a SODA query instead)?</p> http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query 0 Conditional clauses for linq to Db4O query? boris callens 2009-03-27T13:18:32Z 2009-08-31T06:37:35Z <p>In linq to sql i can do like this:</p> <pre><code>var q = db.Colors; if(! string.IsNullOrEmpty(colorName)) q = q.Where(c=&gt;c.Name.Equals(colorName)); return q.ToList(); </code></pre> <p>In Db4O linq I can't do it like this because I have to start with</p> <pre><code>var q = (from Color c in db select c); if(! string.IsNullOrEmpty(colorName)) q = q.Where(c=&gt;c.Name.Equals(colorName)); return q.ToList(); </code></pre> <p>This results in </p> <ol> <li>a complete enumeration of ALL the colors</li> <li>a filter by name.</li> </ol> <p>That's not the solution I was aiming for off course. Any suggestions?</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>