Given a simple inheritance hierarchy: Person -> Student, Teacher, Staff

Say I have a list of Persons, L. In that list are some Students, Teachers, and Staff.

Using LINQ and C#, is there a way I could write a method that could retrieve only a particular type of person?

I know I can do something like:

var peopleIWant = L.OfType< Teacher >();

But I want to be able to do something more dynamic. I would like to write a method that will retrieve results for any type of Person I could think of, without having to write a method for every possible type.

link|improve this question

1  
Why no create a generic method ? – Thomas Levesque Jul 26 '09 at 16:20
I think that's what Mladen Prajdic, did. I hadn't even thought of it, but now that I see it, it seems very reasonable. – Hythloth Jul 26 '09 at 16:29
feedback

3 Answers

up vote 10 down vote accepted

you can do this:

IList<Person> persons = new List<Person>();

public IList<T> GetPersons<T>() where T : Person
{
    return persons.OfType<T>().ToList();
}

IList<Student> students = GetPersons<Student>();
IList<Teacher> teacher = GetPersons<Teacher>();

EDIT: added the where constraint.

link|improve this answer
Ah, this looks wonderful. I am new to LINQ, and not particularly well-versed in generics, but this seems to be precisely what I want. Thank you!. – Hythloth Jul 26 '09 at 16:28
No need to call ToList on the result of GetPersons<T>, since it already returns an IList<T>... – Thomas Levesque Jul 26 '09 at 16:30
1  
You might want to put a constraint of "where T : Person" just to avoid empty lists due to typos etc. – Jon Skeet Jul 26 '09 at 16:32
1  
No, Jon is talking about a generic type constraint, which is checked at compile time, not runtime. See this link : msdn.microsoft.com/en-us/library/d5x73970.aspx – Thomas Levesque Jul 26 '09 at 16:54
4  
Am I missing something here? It seems like all we did here was make the call to OfType into a redundant method. – Joe Chung Jul 26 '09 at 19:49
show 3 more comments
feedback

This should do the trick.

var students = persons.Where(p => p.GetType() == typeof(Student));

link|improve this answer
Thank you for your input. I knew that something like this was possible; I wanted to extend the idea to something more generic. Mladen Prajdic suggested I use a Generic Method, which is something that hadn't crossed my mind. – Hythloth Jul 26 '09 at 16:30
feedback

You could do this:

IEnumerable<Person> GetPeopleOfType<T>(IEnumerable<Person> list)
    where T : Person
{
    return list.Where(p => p.GetType() == typeof(T));
}

But all you've really done is rewrite LINQ's OfType() method with a safer version that uses static type checking to ensure you pass in a Person. You still can't use this method with a type that's determined at runtime (unless you use reflection).

For that, rather than using generics, you'll have to make the type variable a parameter:

IEnumerable<Person> GetPeopleOfType(IEnumerable<Person> list, Type type)
{
    if (!typeof(Person).IsAssignableFrom(type))
        throw new ArgumentException("Parameter 'type' is not a Person");

    return list.Where(p => p.GetType() == type);
}

Now you can construct some type dynamically and use it to call this method.

link|improve this answer
Thank you for introducing me to the "where" constraint for generics. As soon as I specified that constraint, I can now rely on Intellisense support on the available methods & properties of my Person type. – Hythloth Jul 26 '09 at 17:01
feedback

Your Answer

 
or
required, but never shown

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