I'm extending a partial class that was generated from an Entity Framework domain service (it inherits from System.ServiceModel.DomainServices.Client.Entity
).
In a property in this class, I want to be able to access a complete entity set from my DomainContext and run a query on it.
From within the * : Entity
class, is there any good way to access the current DomainContext
-derived object in order to get its entity sets?