Signum.Engine.Linq.AggregateFinder.HasAggregates C# (CSharp) Method

HasAggregates() public static method

public static HasAggregates ( Expression source ) : bool
source System.Linq.Expressions.Expression
return bool
        public static bool HasAggregates(Expression source)
        {
            AggregateFinder ap = new AggregateFinder();
            ap.Visit(source);
            return ap.hasAggregates;
        }