HasLocalAggregate() abstract private method

abstract private HasLocalAggregate ( ) : bool
return bool
 internal bool HasLocalAggregate()
 {
     if (_expr != null)
     {
         return(_expr.HasLocalAggregate());
     }
     else
     {
         return(false);
     }
 }
Esempio n. 2
0
 internal override bool HasLocalAggregate()
 {
     return(_right.HasLocalAggregate());
 }