I have a LINQ query where I'm filtering a list using where multiple WHERE statements.
string[] filters = new string[]{"a","b","c","d"};
var filtered = from n in bigList where n != "a" where n != "b" where n != "c" where n != "c" select n;
How do I use the filters array instead of having to write multiple where clauses?