using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; namespace Signum.Engine.Linq { /// <summary> /// returns the set of all aliases produced by a query source /// </summary> internal class AliasGatherer : DbExpressionVisitor { HashSet<Alias> aliases = new HashSet<Alias>(); private AliasGatherer() { } public static HashSet<Alias> Gather(Expression source) { AliasGatherer ap = new AliasGatherer(); ap.Visit(source); return ap.aliases; } protected override Expression VisitSelect(SelectExpression select) { this.aliases.Add(select.Alias); return base.VisitSelect(select); } protected override Expression VisitTable(TableExpression table) { this.aliases.Add(table.Alias); return base.VisitTable(table); } } }
By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)