C# Класс Azavea.Open.DAO.GroupCountResult

Represents the results from a count of records grouped (aggregated) by some field or fields.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Count int
GroupValues object>.IDictionary

Открытые методы

Метод Описание
GroupCountResult ( int count, object>.IDictionary values ) : System

Creates the result.

Описание методов

GroupCountResult() публичный Метод

Creates the result.
public GroupCountResult ( int count, object>.IDictionary values ) : System
count int
values object>.IDictionary
Результат System

Описание свойств

Count публичное свойство

The number of results found with this combination of group values.
public int Count
Результат int

GroupValues публичное свойство

The combination of group values that occurs Count times in the data source. Group values are a single set of unique values for the fields you grouped by, with key being the name of the grouping and value being the value (I.E. key is "Type" value is "1" and key is "FirstName" value is "Bob", Count would then be the number of records in the data source with a Type of "1" and a FirstName of "Bob".
public IDictionary GroupValues
Результат object>.IDictionary