hot questions tagged db4o+linq - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T10:02:56Zhttp://stackoverflow.com/feeds/tag?tagnames=db4o%2blinq&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/1689089/db4o-query-find-all-objects-with-id-anything-in-array2Db4o query: find all objects with ID = {anything in array}Judah Himango2009-11-06T17:29:05Z2009-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<SimpleObject> 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-query1Improve db4o linq querytanascius2009-09-01T17:07:02Z2009-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 == <given path>
select new Commit( m_Storage, commit );
</code></pre>
<p>As you can see, every <code>PersistedCommit</code> contains a <code>Collection<int></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-query0Conditional clauses for linq to Db4O query?boris callens2009-03-27T13:18:32Z2009-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=>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=>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-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>