SyntaxFactory.AggregationRangeVariable Method

Definition

Overloads

AggregationRangeVariable(AggregationSyntax)

Describes a single variable of the form "[x [As Type] =] aggregation-function" for use in the Into clause of Aggregate or Group By or Group Join query operators.

AggregationRangeVariable(VariableNameEqualsSyntax, AggregationSyntax)

Describes a single variable of the form "[x [As Type] =] aggregation-function" for use in the Into clause of Aggregate or Group By or Group Join query operators.

AggregationRangeVariable(AggregationSyntax)

Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb

Describes a single variable of the form "[x [As Type] =] aggregation-function" for use in the Into clause of Aggregate or Group By or Group Join query operators.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::AggregationRangeVariableSyntax ^ AggregationRangeVariable(Microsoft::CodeAnalysis::VisualBasic::Syntax::AggregationSyntax ^ aggregation);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationRangeVariableSyntax AggregationRangeVariable (Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationSyntax aggregation);
static member AggregationRangeVariable : Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationRangeVariableSyntax
Public Shared Function AggregationRangeVariable (aggregation As AggregationSyntax) As AggregationRangeVariableSyntax

Parameters

aggregation
AggregationSyntax

The name of the aggregation function. The "Group" aggregation function is represented by the identifier "Group".

Returns

Applies to

AggregationRangeVariable(VariableNameEqualsSyntax, AggregationSyntax)

Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb

Describes a single variable of the form "[x [As Type] =] aggregation-function" for use in the Into clause of Aggregate or Group By or Group Join query operators.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::AggregationRangeVariableSyntax ^ AggregationRangeVariable(Microsoft::CodeAnalysis::VisualBasic::Syntax::VariableNameEqualsSyntax ^ nameEquals, Microsoft::CodeAnalysis::VisualBasic::Syntax::AggregationSyntax ^ aggregation);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationRangeVariableSyntax AggregationRangeVariable (Microsoft.CodeAnalysis.VisualBasic.Syntax.VariableNameEqualsSyntax nameEquals, Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationSyntax aggregation);
static member AggregationRangeVariable : Microsoft.CodeAnalysis.VisualBasic.Syntax.VariableNameEqualsSyntax * Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.AggregationRangeVariableSyntax
Public Shared Function AggregationRangeVariable (nameEquals As VariableNameEqualsSyntax, aggregation As AggregationSyntax) As AggregationRangeVariableSyntax

Parameters

nameEquals
VariableNameEqualsSyntax

The optional name and type of the expression range variable. If omitted, the name of the expression range variable is inferred from the aggregation expression.

aggregation
AggregationSyntax

The name of the aggregation function. The "Group" aggregation function is represented by the identifier "Group".

Returns

Applies to