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); 472arguments = arguments.SetItem(arguments.Length - 1, MakeQueryClause(join.Into, arguments[arguments.Length - 1], g)); 478state.fromExpression = MakeQueryClause(join, invocation, x2, invocation, castInvocation); 479state.fromExpression = MakeQueryClause(select, state.fromExpression); 543arguments = arguments.SetItem(arguments.Length - 1, MakeQueryClause(join.Into, arguments[arguments.Length - 1], g)); 548state.fromExpression = MakeQueryClause(join, invocation, x2, invocation, castInvocation); 580state.fromExpression = MakeQueryClause(ordering, invocation, queryInvocation: invocation); 584state.fromExpression = MakeQueryClause(orderby, state.fromExpression); 638arguments.SetItem(arguments.Length - 2, MakeQueryClause(from, arguments[arguments.Length - 2], x2, invocation, castInvocation))); 641state.fromExpression = MakeQueryClause(from, invocation, definedSymbol: x2, queryInvocation: invocation); 642state.fromExpression = MakeQueryClause(select, state.fromExpression); 679state.fromExpression = MakeQueryClause(from, invocation, x2, invocation, castInvocation); 776state.fromExpression = MakeQueryClause(let, invocation, y, invocation);