Querying Specifc Inheritance Types in Entity Framework
The Problem When using Entity Framework let's say you set up a model with inheritance. Let's make ourselves a simple example (with psuedo-code) to illustrate: abstract class Product{ int Id { get; private set; } ICollection Items { get; set; }}class Good...