entity framework - EF - Access derived types from context -
entity framework - EF - Access derived types from context -
here's illustration of issue. here ef classes...
public class basetype{ } public class derived : basetype{ }
is there way straight access derived entities database context in next manner?
context.derived.where(c=> c. whatever...);
as stands when using context can see
context.basetype
entity-framework entity-framework-6
Comments
Post a Comment