3
Answers

LINQ with casesensitive

Photo of Sasi Reddy

Sasi Reddy

11y
1.5k
1
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)