Inheritance: Signum.Engine.Linq.DbExpressionVisitor
Example #1
0
        public static HashSet<Alias> Externals(Expression source)
        {
            UsedAliasGatherer ap = new UsedAliasGatherer();

            ap.Visit(source);

            return ap.externals;
        }
Example #2
0
        public static HashSet <Alias> Externals(Expression source)
        {
            UsedAliasGatherer ap = new UsedAliasGatherer();

            ap.Visit(source);

            return(ap.externals);
        }