We don't currently have a setting that allows you to configure string comparisons against the DevForce cache, although this is something we are looking into. You can use ToUpper() and Trim() in the query which will enable you to specify case insensitivity and to ignore whitespace. For the whitespace, you can also use property interceptors to trim on the get and/or set.
Edit: We will be addressing this issue, but here is a better way to perform a case insensitive string comparison:
entityManager.Employees.Where(emp => emp.FirstName.Equals("Kathy", StringComparison.CurrentCultureIgnoreCase);
Edited by ting - 19-Jul-2010 at 9:24pm