I have LINQ query such as:
var authors = from x in authorsList
where x.firstname == "Bob"
select x;
Given that authorsList is of type List, how can I delete any Author that appears within 'var authors' from authorsList?
Note: This is a simplified example for the purposes of the question.