0
votes
1answer
54 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):
…
0
votes
3answers
241 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#, i …
0
votes
4answers
173 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 …
1
vote
1answer
97 views
Linq2SQL inherited types and OfType query
Hi
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<Deriv …
