Ejemplo n.º 1
0
        public static ReadOnlyCollection <DbSelectExpression> Gather(Expression expression)
        {
            var gatherer = new SelectGatherer();

            gatherer.Visit(expression);
            return(gatherer.selects.AsReadOnly());
        }
Ejemplo n.º 2
0
 public static ReadOnlyCollection<DbSelectExpression> Gather(Expression expression)
 {
     var gatherer = new SelectGatherer();
     gatherer.Visit(expression);
     return gatherer.selects.AsReadOnly();
 }