Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
109 views

How to filter to all variants of a generic type using OfType<>

I want to filter objects in a List<ISeries> using their type, using OfType<>. My problem is, that some objects are of a generic interface type, but they do not have a common inherited ...
4
votes
3answers
3k views

LINQ: From a list of type T, retrieve only objects of a certain subclass S

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 ...
2
votes
1answer
183 views

Linq - OfType<> not working as expected

I have the following code which detects all the elements in a Silverlight application beneath a certain point then filters them to be only those of a particular type - CardButton ...
2
votes
2answers
327 views

Filtering derived classes in Entity set by OfType and getting exception

I am trying to filter derived classes in my entities but i am getting exception. var filtered = db.PersonSet.OfType<Person>(). Where(person =>person.GetType()==typeof(Person)) ...
2
votes
1answer
296 views

How Does Queryable.OfType Work?

Important The question is not "What does Queryable.OfType do, it's "how does the code I see there accomplish that?" Reflecting on Queryable.OfType, I see (after some cleanup): public static ...
1
vote
2answers
359 views

Linq2SQL inherited types and OfType query

I have a setup where I used Linq2SQL inheritance. To make queries easier, I expose the derived types in the DataContext as well, like the following: public IQueryable<Derived> Derivations { ...
0
votes
0answers
119 views

Linq to Entities filter OfType

I've got three associated Entities: ATTACHMENT | DEVICE | EVALUATION Attachment has a DeviceID, as does Evaluation. Evaluation also has subclasses. I need to perform some filtering on attachment ...
0
votes
2answers
247 views

List.OfType() speed, alternative data structures

Take a look at this code. interface ILoader { } interface ILoader<T>: ILoader { T Load(); } class CarLoader: ILoader<Car> { ... } class TrainLoader: ILoader<Train> { ...
0
votes
4answers
668 views

.Net Use Reflection To Define OfType

I am using System.Reflection to load a type that I cannot otherwise load during design time. I need to pull all controls within a collection of this type, however, i the OfType command doesn't seem ...