C# 클래스 Azavea.Open.DAO.Criteria.Grouping.MemberGroupExpression

A group expression that aggregates based on values of a data member. This is the most common case. I.E. aggregating based on a "Type" field or property on the data object.
상속: AbstractGroupExpression
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
MemberName string

공개 메소드들

메소드 설명
MemberGroupExpression ( string memberName )

Creates the expression using the member name as the group name.

MemberGroupExpression ( string memberName, string groupName )

Create the expression with an explicit name to use instead of the data member name when including it in the GroupCountResult.

메소드 상세

MemberGroupExpression() 공개 메소드

Creates the expression using the member name as the group name.
public MemberGroupExpression ( string memberName )
memberName string The name of the data member (field/property) on the object to /// group by.

MemberGroupExpression() 공개 메소드

Create the expression with an explicit name to use instead of the data member name when including it in the GroupCountResult.
public MemberGroupExpression ( string memberName, string groupName )
memberName string The name of the data member (field/property) on the object to /// group by.
groupName string The name to call it in the GroupCountResult's collection.

프로퍼티 상세

MemberName 공개적으로 프로퍼티

The name of the data member (field/property) on the object to group by.
public string MemberName
리턴 string