Does anyone know how we can use where not in () instructions with lambda?
this is where id in() statement public List<abc> GetList(List<string> ID) { return db.abcs.Where(a => ID.Contains(a.id)).ToList<abc>(); }
I would like to find how the cloud will be the opposite. "where id is not in ..."
source share