Exemple #1
0
        public static ReadOnlyCollection <SelectExpression> Gather(Expression expression)
        {
            var gatherer = new SelectGatherer();

            gatherer.Visit(expression);
            return(gatherer.selects.AsReadOnly());
        }
 public static ReadOnlyCollection<SelectExpression> Gather(Expression expression)
 {
     var gatherer = new SelectGatherer();
     gatherer.Visit(expression);
     return gatherer.selects.AsReadOnly();
 }