I am trying to write linq lambda exp and IDK how to convert this from sql
SELECT * FROM Students s
WHERE s.MathGrades > 5
AND s.FizGrades > 5
AND NOT (s.MathGrades =2 AND s.FizGrades = 2)
How to write "AND NOT" in linq Lambda exp ?
I am trying to write linq lambda exp and IDK how to convert this from sql
SELECT * FROM Students s
WHERE s.MathGrades > 5
AND s.FizGrades > 5
AND NOT (s.MathGrades =2 AND s.FizGrades = 2)
How to write "AND NOT" in linq Lambda exp ?
Copyright © 2021 Jogjafile Inc.
The same way you would write it in C# code generally.
AND NOTis&& !The full LINQ query: