Title here
Summary here
This attribute is used to identify the grouping property for aggregations. The passed column name identifies the property in the aggregation output object.
[AttributeUsage(AttributeTargets.Property)]
public sealed class GroupColumn : Attribute
public GroupColumn()
Sets the property name used for grouping in the input object
public GroupColumn(string groupPropNameInInput)
Type | Name | Description |
---|---|---|
string | groupPropNameInInput | Property name in the input object used for grouping the aggregation data |
Property name used in the input object for grouping the aggregation.
public string GroupPropNameInInput { get; set; }
Type | Description |
---|---|
string |
Property name that holds the grouping value in the output object
public string GroupPropNameInOutput { get; set; }
Type | Description |
---|---|
string |