Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
public class MyItem
{
    public string Name { get; set; }

    public IList<MyItem> ListByName(string name)
    {
        IList<MyItem> myItems = new List<MyItem>();

        myItems.Add(new MyItem() { Name = "Item 1" });
        myItems.Add(new MyItem() { Name = "Item 2" });
        myItems.Add(new MyItem() { Name = "Item 3" });
        myItems.Add(new MyItem() { Name = "Item 3" });

        return (IList<MyItem>) myItems.Select(i => i.Name == name);
    }
}

I was getting a cast exception, initially (IEnumerable to IList) and an explicit cast does not work here.

My goal is to return an IList where the MyItem.Name property is equal to the method's argument.

Few questions here:

Should I be using "Select", "Where", or neither of those here?

What's the proper way to return my filtered IList here?

share|improve this question
5  
even intellisense can anwer your question – maxlego May 21 '11 at 0:14

closed as not a real question by casperOne Aug 30 '12 at 11:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 8 down vote accepted
return myItems.Where(i => i.Name == name).ToList();
share|improve this answer

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