Hello,
I'm migrating to 2012 and there is a class changed to internal :
        private static void InitializeDbProvider(IDataSourceKey dataSourceKey)
        {
            // If you don't want to directly reference the assembly, you can use reflection to get what
            // you need at run time (the IdeaBlade.EntityModel.Edm assembly is always loaded by the BOS).
            Type t = IdeaBlade.Core.InternalFns.GetIdeaBladeType("IdeaBlade.EntityModel.Edm.EdmKey", true);
            var primer = t.GetProperty("DbConnectionString");
            var edmKey = new EdmKey((ClientEdmKey)dataSourceKey);
it's : IdeaBlade.Core.InternalFns.GetIdeaBladeType
How sould be refactored?
Thank you