Items
Code
A
B
C
from x in Items where(x.Code.Contains("a")) select x //This Linq returns A
from x in Items.ToList() where(x.Code.Contains("a")) select x //This Linq returns nothing
In the second Linq it has become Case Sensitive may i know why and how to overcome this.