private static DbTable FindCollectionTable(DbSchema schema, ClrType collectionType)
        {
            var typeName = collectionType.Name;

            foreach (var t in schema.Tables)
            {
                if (ClrType.GetUserCollectionTypeName(t.ClassName) == typeName)
                {
                    return(t);
                }
            }

            return(null);
        }