3
Answers

LINQ with casesensitive

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)