I have three separate lists of ids listORS, listANDS, and listNOTS.
The logic should be applied as the following:
listORS && listANDS && listNOTS
The large list will be named listOfIds.
listOfIds should contain ANY from the listORS, all from listANDS, and nothing from listNOTS
How would a LINQ statement be written to include all the lists and still apply the appropriate logic?