Inheritance: Shaolinq.Persistence.Linq.Expressions.SqlExpressionVisitor
Esempio n. 1
0
        public static List<SqlAggregateExpression> Find(Expression expression)
        {
            var gatherer = new AggregateFinder();

            gatherer.Visit(expression);

            return gatherer.aggregatesFound;
        }
Esempio n. 2
0
        public static List <SqlAggregateExpression> Find(Expression expression)
        {
            var gatherer = new AggregateFinder();

            gatherer.Visit(expression);

            return(gatherer.aggregatesFound);
        }