Exemplo n.º 1
0
        public static bool HasAggregates(Expression source)
        {
            AggregateFinder ap = new AggregateFinder();

            ap.Visit(source);
            return(ap.hasAggregates);
        }
Exemplo n.º 2
0
 public static bool HasAggregates(Expression source)
 {
     AggregateFinder ap = new AggregateFinder();
     ap.Visit(source);
     return ap.hasAggregates;
 }