C# 클래스 FdoToolbox.Core.Feature.FeatureQueryOptions

Use this class to set filter criteria for selecting features from a FDO datastore
파일 보기 프로젝트 열기: jumpinjackie/fdotoolbox 1 사용 예제들

공개 메소드들

메소드 설명
AddComputedProperty ( NameValueCollection computedProperties ) : void

Adds a series of computed expressions to be part of the query result

AddComputedProperty ( string alias, string expression ) : void

Adds a computed expression to be part of the query result

AddFeatureProperty ( IEnumerable propertyNames ) : void

Adds a series of properties that are to be part of the query result

AddFeatureProperty ( string propertyName ) : void

Adds a property that is to be part of the query result

AddJoinCriteria ( FdoJoinCriteriaInfo criteria ) : void

Adds a join criteria to the query result

FeatureQueryOptions ( string className ) : System

Constructor

RemoveComputedProperty ( string alias ) : void

Removes a computed expression that is to be part of the query result

RemoveFeatureProperty ( string propertyName ) : void

Removes a property that is to be part of the query result

RemoveJoinCriteria ( FdoJoinCriteriaInfo criteria ) : void

Removes a join criteria that is to be part of the query result

SetOrderingOption ( IEnumerable propertyNames, OrderingOption option ) : void

Sets the ordering options for this query. Note that most providers do not support ordering.

SetOrderingOption ( IEnumerable propertyNames, OrderingOption option, bool useAlias ) : void

Sets the ordering options for this query. Note that most providers do not support ordering.

메소드 상세

AddComputedProperty() 공개 메소드

Adds a series of computed expressions to be part of the query result
public AddComputedProperty ( NameValueCollection computedProperties ) : void
computedProperties System.Collections.Specialized.NameValueCollection
리턴 void

AddComputedProperty() 공개 메소드

Adds a computed expression to be part of the query result
public AddComputedProperty ( string alias, string expression ) : void
alias string
expression string
리턴 void

AddFeatureProperty() 공개 메소드

Adds a series of properties that are to be part of the query result
public AddFeatureProperty ( IEnumerable propertyNames ) : void
propertyNames IEnumerable
리턴 void

AddFeatureProperty() 공개 메소드

Adds a property that is to be part of the query result
public AddFeatureProperty ( string propertyName ) : void
propertyName string
리턴 void

AddJoinCriteria() 공개 메소드

Adds a join criteria to the query result
public AddJoinCriteria ( FdoJoinCriteriaInfo criteria ) : void
criteria FdoJoinCriteriaInfo
리턴 void

FeatureQueryOptions() 공개 메소드

Constructor
public FeatureQueryOptions ( string className ) : System
className string
리턴 System

RemoveComputedProperty() 공개 메소드

Removes a computed expression that is to be part of the query result
public RemoveComputedProperty ( string alias ) : void
alias string
리턴 void

RemoveFeatureProperty() 공개 메소드

Removes a property that is to be part of the query result
public RemoveFeatureProperty ( string propertyName ) : void
propertyName string
리턴 void

RemoveJoinCriteria() 공개 메소드

Removes a join criteria that is to be part of the query result
public RemoveJoinCriteria ( FdoJoinCriteriaInfo criteria ) : void
criteria FdoJoinCriteriaInfo
리턴 void

SetOrderingOption() 공개 메소드

Sets the ordering options for this query. Note that most providers do not support ordering.
public SetOrderingOption ( IEnumerable propertyNames, OrderingOption option ) : void
propertyNames IEnumerable
option OrderingOption
리턴 void

SetOrderingOption() 공개 메소드

Sets the ordering options for this query. Note that most providers do not support ordering.
public SetOrderingOption ( IEnumerable propertyNames, OrderingOption option, bool useAlias ) : void
propertyNames IEnumerable
option OrderingOption
useAlias bool
리턴 void