Has anyone worked out how to share the Context of an Entity Framework model in the same way the Linq Context is shared in the Project Tracker application? Basically I want to replace
using (var ctx = ContextManager<ProjectTracker.DalLinq.PTrackerDataContext>.GetManager(ProjectTracker.DalLinq.Database.PTracker))with an Entity Framework context instead. I checked out 3.62 example and it looks like Rocky hasn't gotten to it yet. I can do it old school and pass it in like we used to do with ADO.Net in CSLA 2.x but if there is a more elegant way to share the context with the child objects I'd prefer that.
Copyright (c) Marimer LLC