I\'m using Linq-to-SQL and I use compiled Linq for better performance.
I have users table with a INT field called \"LookingFor\" that can have the follo
INT
I'm facing the same problem. I have managed for now just one workaround for this problem. Instead of using
u.LookingFor.ToString().Contains(lookingFor)
I've used
u.LookingFor.ToString().IndexOf(lookingFor) >= 0