Can someone convert this to C# LINQ for me please ??
SELECT *
FROM vf
LEFT JOIN dbvf
ON vf.sid =dbvf.sid
AND vf.cid =dbvf.cid
WHERE dbvf.sid IS NULL
Both vf and dbvf are List<T>. sid and cid are integers.
What I am trying to do is find items in vf that are missing in dbvf.
try this
or this simple