I've noticed that within two classes generated by LLBLGen, it includes the name of my development database, "LOCAL_IHIDB".
\HelperClasses\PersistenceInfoProvider.cs:
base.AddElementMapping( "TopicEntity", "LOCAL_IHIDB", @"dbo", "lmsTopic", 3 );
\StoredProcedureCallerClasses\RetrievalProcedures.cs:
string procName = SD.LLBLGen.Pro.DQE.SqlServer.DynamicQueryEngine.GetNewStoredProcedureName("[LOCAL_IHIDB].[dbo].[lms_LessonPageOrder]");
Clearly this is an issue when moving it into a test or production environment. Is there are way to avoid or remove these entries when working with SelfServicing classes?