Hello I've created a concrete DataContext with approx. 15 tables (no sproc mappings). For performance reasons, I'm cloning the context. However, when invoking the .Clone() method on the context, I'm getting the following exception: "Constructor on type 'SphereWorks.Cms.Context.Data.CmsDataContext' not found." Code Snippet public Page GetPageEntity( Guid targetID) { using ( CmsDataContext db = new CmsDataContext ( SqlFactory .SqlConnectionString)) { CmsDataContext clone = db.Clone() as CmsDataContext
Read More...