20 references to MakeQueryClause
Microsoft.CodeAnalysis.CSharp (20)
Binder\Binder_Query.cs (20)
68state.fromExpression = MakeQueryClause(fromClause, state.fromExpression, x, castInvocation: cast);
80result = MakeQueryClause(continuation.Body, result, x);
81result = MakeQueryClause(continuation, result, x);
85return MakeQueryClause(node, result);
207return MakeQueryClause(state.selectOrGroup, result, unoptimizedForm: unoptimized);
241return MakeQueryClause(selectClause, result, queryInvocation: result);
295return MakeQueryClause(groupClause, result, queryInvocation: result, unoptimizedForm: unoptimizedForm);
375state.fromExpression = MakeQueryClause(where, invocation, queryInvocation: invocation);
470arguments = arguments.SetItem(arguments.Length - 1, MakeQueryClause(join.Into, arguments[arguments.Length - 1], g));
476state.fromExpression = MakeQueryClause(join, invocation, x2, invocation, castInvocation);
477state.fromExpression = MakeQueryClause(select, state.fromExpression);
539arguments = arguments.SetItem(arguments.Length - 1, MakeQueryClause(join.Into, arguments[arguments.Length - 1], g));
544state.fromExpression = MakeQueryClause(join, invocation, x2, invocation, castInvocation);
576state.fromExpression = MakeQueryClause(ordering, invocation, queryInvocation: invocation);
580state.fromExpression = MakeQueryClause(orderby, state.fromExpression);
632arguments.SetItem(arguments.Length - 2, MakeQueryClause(from, arguments[arguments.Length - 2], x2, invocation, castInvocation)));
635state.fromExpression = MakeQueryClause(from, invocation, definedSymbol: x2, queryInvocation: invocation);
636state.fromExpression = MakeQueryClause(select, state.fromExpression);
672state.fromExpression = MakeQueryClause(from, invocation, x2, invocation, castInvocation);
764state.fromExpression = MakeQueryClause(let, invocation, y, invocation);