Esempio n. 1
0
        private TableName[] Search(TableName[] names)
        {
            var selector = KeySelector(Pattern);
            Wildcard <TableName> match = new Wildcard <TableName>(selector)
            {
                Pattern  = Pattern,
                Includes = Includedtables,
                Excludes = Excludedtables,
            };

            return(match.Results(names));
        }