private static void ConfigureTable(TypeConventionConfiguration configuration, IMetadataElement tableElement)
        {
            string schemaName;
            var    tableName = tableElement.ResolveName();

            ParseTableName(ref tableName, out schemaName);

            configuration.Configure(x => x.ToTable(tableName, schemaName));
            configuration.Configure(x => x.HasTableAnnotation(AnnotationKey, tableElement.Identity.Id));
        }