當前位置: 首頁>>代碼示例>>C#>>正文


C# Linq.QueryBlock類代碼示例

本文整理匯總了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));
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:38,代碼來源:linq.cs

示例2: Where

		public Where (QueryBlock block, BooleanExpression expr, Location loc)
			: base (block, expr, loc)
		{
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:4,代碼來源:linq.cs

示例3: Select

		public Select (QueryBlock block, Expression expr, Location loc)
			: base (block, expr, loc)
		{
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:4,代碼來源:linq.cs

示例4: SelectMany

		public SelectMany (QueryBlock block, RangeVariable identifier, Expression expr, Location loc)
			: base (block, identifier, expr, loc)
		{
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:4,代碼來源:linq.cs

示例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;
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:6,代碼來源:linq.cs

示例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;
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:6,代碼來源:linq.cs

示例7: QueryStartClause

		public QueryStartClause (QueryBlock block, Expression expr, RangeVariable identifier, Location loc)
			: base (block, identifier, expr, loc)
		{
			block.AddRangeVariable (identifier);
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:5,代碼來源:linq.cs

示例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;
		}
開發者ID:stabbylambda,項目名稱:mono,代碼行數:6,代碼來源:linq.cs

示例9: AQueryClause

		protected AQueryClause (QueryBlock block, Expression expr, Location loc)
			 : base (expr)
		{
			this.block = block;
			this.loc = loc;
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:6,代碼來源:linq.cs

示例10: ARangeVariableQueryClause

		protected ARangeVariableQueryClause (QueryBlock block, RangeVariable identifier, Expression expr, Location loc)
			: base (block, expr, loc)
		{
			this.identifier = identifier;
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:5,代碼來源:linq.cs

示例11: RangeVariable

			public RangeVariable (QueryBlock block, Location loc)
			{
				Block = block;
				Location = loc;
			}
開發者ID:stabbylambda,項目名稱:mono,代碼行數:5,代碼來源:linq.cs

示例12: SelectMany

		public SelectMany (QueryBlock block, SimpleMemberName identifier, Expression expr, Location loc)
			: base (block, identifier, expr, loc)
		{
		}
開發者ID:stabbylambda,項目名稱:mono,代碼行數:4,代碼來源:linq.cs

示例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;
		}
開發者ID:stabbylambda,項目名稱:mono,代碼行數:6,代碼來源:linq.cs

示例14: OrderByDescending

		public OrderByDescending (QueryBlock block, Expression expr)
			: base (block, expr, expr.Location)
		{
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:4,代碼來源:linq.cs

示例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;
			}
		}
開發者ID:alisci01,項目名稱:mono,代碼行數:11,代碼來源:linq.cs


注:本文中的Mono.CSharp.Linq.QueryBlock類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。