Share via


RelationalGroupByResultExpression Constructor

Definition

Creates a new instance of the RelationalGroupByResultExpression class.

public RelationalGroupByResultExpression (System.Linq.Expressions.Expression keyIdentifier, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer> keyIdentifierValueComparers, System.Linq.Expressions.Expression keyShaper, System.Linq.Expressions.Expression elementShaper);
new Microsoft.EntityFrameworkCore.Query.RelationalGroupByResultExpression : System.Linq.Expressions.Expression * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer> * System.Linq.Expressions.Expression * System.Linq.Expressions.Expression -> Microsoft.EntityFrameworkCore.Query.RelationalGroupByResultExpression
Public Sub New (keyIdentifier As Expression, keyIdentifierValueComparers As IReadOnlyList(Of ValueComparer), keyShaper As Expression, elementShaper As Expression)

Parameters

keyIdentifier
Expression

An identifier for the parent element.

keyIdentifierValueComparers
IReadOnlyList<ValueComparer>

A list of value comparers to compare parent identifier.

keyShaper
Expression

An expression used to create individual elements of the collection.

elementShaper
Expression

An expression used to create individual elements of the collection.

Applies to