Ejemplo n.º 1
0
        public static HashSet <string> Gather(Expression source)
        {
            var gatherer = new SqlDeclaredAliasesGatherer();

            gatherer.Visit(source);

            return(gatherer.aliases);
        }
Ejemplo n.º 2
0
		public static HashSet<string> Gather(Expression source)
		{
			var gatherer = new SqlDeclaredAliasesGatherer();

			gatherer.Visit(source);

			return gatherer.aliases;
		}