I have some linq entities that inherit something like this:
public abstract class EntityBase { public int Identifier { get; } } public interface IDeviceEnti
Try .OfType<>() as posted here https://stackoverflow.com/a/17734469/3936440, it works for me having the exact same issue.
.OfType<>()