Пример #1
0
        public override DataTable GetSchema(string collectionName, string[] restrictionValues)
        {
            if (collectionName == null)
            {
                collectionName = SchemaProvider.MetaCollection;
            }
            string[] restrictions        = this.schemaProvider.CleanRestrictions(restrictionValues);
            MySqlSchemaCollection schema = this.schemaProvider.GetSchema(collectionName, restrictions);

            return(schema.AsDataTable());
        }