C# 클래스 Azavea.Open.DAO.GroupCountResult

Represents the results from a count of records grouped (aggregated) by some field or fields.
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
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