Tagged Questions

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)) ...
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 ...