LukaMatkic
Results
1
comments of
LukaMatkic
@deaquino I have solved the problem by adding code at beginning of "VisitSelect" method: ``` if (selectExpression.Tables.Any()) { selectExpression = selectExpression.Update(projections: selectExpression.Projection.ToList(), predicate: selectExpression.Predicate, tables: selectExpression.Tables.Select(x => (TableExpressionBase)VisitExtension(x)).ToList().AsReadOnly(), groupBy: selectExpression.GroupBy.ToList(),...