3
Reply

LINQ with casesensitive

Sasi Reddy

Sasi Reddy

Feb 11 2014 1:04 AM
918
how to compare strings with respect to case sensitive using LINQ

 var compare = db.NormalRegistrations .SingleOrDefault(d => d.Name == userr.Name && d.Password == userr.Password);

how to write above query comparision with respect to case sensitive .

Answers (3)