Why does the StringComparison.InvariantCultureIgnoreCase not work with this Db4o linq query? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:57:59Zhttp://stackoverflow.com/feeds/question/681926http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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/681926/why-does-the-stringcomparison-invariantcultureignorecase-not-work-with-this-db4o/681958#6819580Answer by Marc Gravell for Why does the StringComparison.InvariantCultureIgnoreCase not work with this Db4o linq query?Marc Gravell2009-03-25T14:52:40Z2009-03-25T14:52:40Z<p>LINQ expression parsers are pretty much at liberty to support (or not) any set of operations they choose. In the case of LINQ-to-SQL and EF, they will throw an exception if they get confused by something (and I would expect the above to fall into this) - but it sounds like Db4o is just saying "no matches".</p>
<p>Does Db40 have the ability to log the queries it executes? Maybe it is doing something funky... but we can only guess...</p>