Thanks for your reply Greg,
Funtionaly this works, but, as far as I know, is not optimized on the SQL backend. With a larger table this would result in very slow responses because the SQL indexes wouldn't be used.
My screens have a search view portion, when a user enters a character in a search field, the query would be send right away (although others would maybe use a search button first). This is my preferred way and I use it in my programs for 15 years. This can only work when we use some indexing, and if we avoid constructions that would not make use of it, like ToLower() on the attribute/fieldname.
But isn't there a simpler option to make all queries search case insensitive by default? I mean, somewhere in EF there must be some logic that says to SQL to use case sensitive instead, because the SQL database itself is case insensitive (so any direct query on it, is case insensitive). Maybe there is an option to turn that off?
When saying that I decided to look for this 'supposed' setting.... I couldn't find one. I stumbled across a small blog:
It states that LINQ to Entities could use the StringComparison, but is this then somehow related to something not implemented in DevForce?
best regards,