ASP.NET Core MVC コントロールヘルプ
Aggregate 列挙体

C1.AspNetCore.Mvc アセンブリ > C1.Web.Mvc.Grid 名前空間 : Aggregate 列挙体
Specifies the type of aggregate to calculate over a group of values.
シンタックス
'宣言
 
Public Enum Aggregate 
   Inherits System.Enum
public enum Aggregate : System.Enum 
メンバ
メンバ解説
AvgReturns the average value of the numeric values in the group.
CntReturns the count of non-null values in the group.
CntAllReturns the count of all values in the group (including nulls).
FirstReturns the first non-null value in the group.
LastReturns the last non-null value in the group.
MaxReturns the maximum value in the group.
MinReturns the minimum value in the group.
NoneNo aggregate.
RngReturns the difference between the maximum and minimum numeric values in the group.
StdReturns the sample standard deviation of the numeric values in the group (uses the formula based on n-1).
StdPopReturns the population standard deviation of the values in the group (uses the formula based on n).
SumReturns the sum of the numeric values in the group.
VarReturns the sample variance of the numeric values in the group (uses the formula based on n-1).
VarPopReturns the population variance of the values in the group (uses the formula based on n).
継承階層

System.Object
   System.ValueType
      System.Enum
         C1.Web.Mvc.Grid.Aggregate

参照

C1.Web.Mvc.Grid 名前空間