We're working in EFv1 and I'm implementing a search control with several filter options. Most of them I translate into .Where clauses and that is ok with EF.
But there is one specific filter that can make my application run very slow: text search. The column in the database has a corresponding entity property in my EF model, but I just can't put a Contains in there, this is not good for text searching.
What do you feel is good to use in this case?
I've heard of Lucene, I don't know if this integrates with EFv1.
Thanks