Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var query = (from s in db.Stagings
  2. join t in db.Printers on s.MacAddress equals t.MacAddress into tj
  3. from t in tj.DefaultIfEmpty()
  4. where t == null
  5. select new { s.MacAddress,s.PrinterName,s.HostName,s.IPAddress,s.ReportDate}).Distinct();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement