Seleccione registros que no existan en otra tabla en Entity Framework
db.Customers
.Where(c => !db.Blacklists
.Select(b => b.CusId)
.Contains(c.CusId)
);
Beautiful Bee