Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

9 Answers

up vote 288 down vote accepted

Well, it would be easier to exclude them in the first place:

authorsList = authorsList.Where(x => x.FirstName != "Bob").ToList();

However, that would just change the value of authorsList instead of removing the authors from the previous collection. Alternatively, you can use RemoveAll:

authorsList.RemoveAll(x => x.FirstName == "Bob");

If you really need to do it based on another collection, I'd use a HashSet, RemoveAll and Contains:

var setToRemove = new HashSet<Author>(authors);
authorsList.RemoveAll(x => setToRemove.Contains(x));
share|improve this answer
Brilliant, thanks! – Bondt Jun 26 '12 at 9:39
2  
What's the reason for using HashSet for another collection? – Display Name is missing Aug 7 '12 at 1:51
8  
@LeoLuis: It makes the Contains check fast, and ensures you only evaluate the sequence once. – Jon Skeet Aug 7 '12 at 1:57
That's nice to know. Does it really have to be a HashSet though, will a weak collection set be fine? Lastly, are you sure that it only evaluates the sequence once? – Display Name is missing Aug 7 '12 at 3:19
@LeoLuis: Yes, building a HashSet from a sequence only evaluates it once. Not sure what you mean by "weak collection set". – Jon Skeet Aug 7 '12 at 3:21
show 6 more comments

It'd be better to use List<T>.RemoveAll to accomplish this.

authorsList.RemoveAll((x) => x.firstname == "Bob");
share|improve this answer
@Reed Copsey: The lambda parameter in your example is enclosed in parentheses, i.e., (x). Is there a technical reason for this? Is it considered good practice? – Matt Davis Sep 10 '09 at 5:56
5  
No. It's required with >1 parameter. With a single parameter, it's optional, but it does help keep consistency. – Reed Copsey Sep 10 '09 at 11:41

If you really need to remove items then what about Except()?
You can remove based on a new list, or remove on-the-fly by nesting the Linq.

var authorsList = new List<Author>()
{
    new Author{ Firstname = "Bob", Lastname = "Smith" },
    new Author{ Firstname = "Fred", Lastname = "Jones" },
    new Author{ Firstname = "Brian", Lastname = "Brains" },
    new Author{ Firstname = "Billy", Lastname = "TheKid" }
};

var authors = authorsList.Where(a => a.Firstname == "Bob");
authorsList = authorsList.Except(authors).ToList();
authorsList = authorsList.Except(authorsList.Where(a=>a.Firstname=="Billy")).ToList();
share|improve this answer

Simple solution:

static void Main()
{
    List<string> myList = new List<string> { "Jason", "Bob", "Frank", "Bob" };
    myList.RemoveAll(x => x == "Bob");

    foreach (string s in myList)
    {
        //
    }
}
share|improve this answer

You cannot do this with standard LINQ operators because LINQ provides query, not update support.

But you can generate a new list and replace the old one.

var authorsList = GetAuthorList();

authorsList = authorsList.Where(a => a.FirstName != "Bob").ToList();

Or you could remove all items in authors in a second pass.

var authorsList = GetAuthorList();

var authors = authorsList.Where(a => a.FirstName == "Bob").ToList();

foreach (var author in authors)
{
    authorList.Remove(author);
}
share|improve this answer

You can remove in two ways

var output = from x in authorsList
             where x.firstname != "Bob"
             select x;

or

var authors = from x in authorsList
              where x.firstname == "Bob"
              select x;

var output = from x in authorsList
             where !authors.Contains(x) 
             select x;

I had same issue, if you want simple output based on your where condition , then first solution is better.

share|improve this answer

LINQ has its origins in functional programming, which emphasises immutability of objects, so it doesn't provide a built-in way to update the original list in-place.

share|improve this answer

I think you could do something like this

    authorsList = (from a in authorsList
                  where !authors.Contains(a)
                  select a).ToList();

Although I think the solutions already given solve the problem in a more readable way.

share|improve this answer

This is a very old question, but I found a really simple way to do this:

authorsList = authorsList.Except(authors)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.