Tagged Questions
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
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))
...
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
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>
{
...