本文整理汇总了C#中Mono.CSharp.Linq.QueryBlock类的典型用法代码示例。如果您正苦于以下问题:C# QueryBlock类的具体用法?C# QueryBlock怎么用?C# QueryBlock使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
QueryBlock类属于Mono.CSharp.Linq命名空间,在下文中一共展示了QueryBlock类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateArguments
protected override void CreateArguments (ResolveContext ec, Parameter parameter, ref Arguments args)
{
if (args == null) {
if (IdentifierType != null)
expr = CreateCastExpression (expr);
base.CreateArguments (ec, parameter, ref args);
}
Expression result_selector_expr;
QueryBlock result_block;
var target = GetIntoVariable ();
var target_param = new ImplicitLambdaParameter (target.Name, target.Location);
//
// When select follows use it as a result selector
//
if (next is Select) {
result_selector_expr = next.Expr;
result_block = next.block;
result_block.SetParameters (parameter, target_param);
next = next.next;
} else {
result_selector_expr = CreateRangeVariableType (ec, parameter, target, new SimpleName (target.Name, target.Location));
result_block = new QueryBlock (ec.Compiler, block.Parent, block.StartLocation);
result_block.SetParameters (parameter, target_param);
}
LambdaExpression result_selector = new LambdaExpression (Location);
result_selector.Block = result_block;
result_selector.Block.AddStatement (new ContextualReturn (result_selector_expr));
args.Add (new Argument (result_selector));
}
示例2: Where
public Where (QueryBlock block, BooleanExpression expr, Location loc)
: base (block, expr, loc)
{
}
示例3: Select
public Select (QueryBlock block, Expression expr, Location loc)
: base (block, expr, loc)
{
}
示例4: SelectMany
public SelectMany (QueryBlock block, RangeVariable identifier, Expression expr, Location loc)
: base (block, identifier, expr, loc)
{
}
示例5: Join
public Join (QueryBlock block, RangeVariable lt, Expression inner, QueryBlock outerSelector, QueryBlock innerSelector, Location loc)
: base (block, lt, inner, loc)
{
this.outer_selector = outerSelector;
this.inner_selector = innerSelector;
}
示例6: GroupJoin
public GroupJoin (QueryBlock block, RangeVariable lt, Expression inner,
QueryBlock outerSelector, QueryBlock innerSelector, RangeVariable into, Location loc)
: base (block, lt, inner, outerSelector, innerSelector, loc)
{
this.into = into;
}
示例7: QueryStartClause
public QueryStartClause (QueryBlock block, Expression expr, RangeVariable identifier, Location loc)
: base (block, identifier, expr, loc)
{
block.AddRangeVariable (identifier);
}
示例8: Join
public Join (QueryBlock block, SimpleMemberName lt, Expression inner, QueryBlock outerSelector, QueryBlock innerSelector, Location loc)
: base (block, lt, inner, loc)
{
this.outer_selector = outerSelector;
this.inner_selector = innerSelector;
}
示例9: AQueryClause
protected AQueryClause (QueryBlock block, Expression expr, Location loc)
: base (expr)
{
this.block = block;
this.loc = loc;
}
示例10: ARangeVariableQueryClause
protected ARangeVariableQueryClause (QueryBlock block, RangeVariable identifier, Expression expr, Location loc)
: base (block, expr, loc)
{
this.identifier = identifier;
}
示例11: RangeVariable
public RangeVariable (QueryBlock block, Location loc)
{
Block = block;
Location = loc;
}
示例12: SelectMany
public SelectMany (QueryBlock block, SimpleMemberName identifier, Expression expr, Location loc)
: base (block, identifier, expr, loc)
{
}
示例13: GroupJoin
public GroupJoin (QueryBlock block, SimpleMemberName lt, Expression inner,
QueryBlock outerSelector, QueryBlock innerSelector, SimpleMemberName into, Location loc)
: base (block, lt, inner, outerSelector, innerSelector, loc)
{
this.into = into;
}
示例14: OrderByDescending
public OrderByDescending (QueryBlock block, Expression expr)
: base (block, expr, expr.Location)
{
}
示例15: GroupBy
public GroupBy (QueryBlock block, Expression elementSelector, QueryBlock elementBlock, Expression keySelector, Location loc)
: base (block, keySelector, loc)
{
//
// Optimizes clauses like `group A by A'
//
if (!elementSelector.Equals (keySelector)) {
this.element_selector = elementSelector;
this.element_block = elementBlock;
}
}