4
I am trying to translate the query below, in LINQ, but without success, someone can help me?
SELECT * FROM PESSOAL A
WHERE NOT EXISTS (
SELECT Chapa FROM PRODUCAO B
WHERE B.Chapa = A.Chapa AND B.Data='2014-09-02')
AND A.Codsubord='CB02010100';
I have difficulty with lambda expressions and tried to try but the visual returned errors
– lll_JR_lll
and what mistake was?
– CesarMiguel