System.AccessViolationException when using TPT inheritance in Entity Framework CTP5
- by Ben
Hi,
I'm using TPT inheritance in EF CTP5 with SQL CE 4.
I have an abstract base class "Widget" with common properties like "Title".
I can successfully save concrete Widget implementations e.g. "TwitterWidget".
However, I have a problem retrieving all widgets (or rather ALL widget implementations).
My repository exposes the following:
public…