db.tbluser.Where(c => c.Email == objUser.Email && c.Code.Equals(objUser.Code, StringComparison.Ordinal)).FirstOrDefault();
Specifically, when i match email and password both at same time it do not match password case sensitivity. I am using this query but it is not comparing case sensitivity of word. I want to compare LHR5P with lhr5p. It should not get value against this.