C# 클래스 Azavea.Open.DAO.Unqueryable.UnqueryableQuery

A query intended to be run against a data source that does not have any native query mechanism. Therefore this class merely stores the criteria used for the query, to be later used when manually processing the contents of the data source.
상속: IDaQuery
파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
Criteria Azavea.Open.DAO.Criteria.DaoCriteria

공개 메소드들

메소드 설명
Clear ( ) : void

Clears the contents of the query, allowing the object to be reused.

ToString ( ) : string

Returns a T:System.String that represents the current T:System.Object.

메소드 상세

Clear() 공개 메소드

Clears the contents of the query, allowing the object to be reused.
public Clear ( ) : void
리턴 void

ToString() 공개 메소드

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
리턴 string

프로퍼티 상세

Criteria 공개적으로 프로퍼티

Since the queries have to be evaluated at read time (there is no queryability in the data source itself, we have to merely read it and discard rows that don't match) there is nothing to be done to "pre-process" the criteria, we just save it for the reader to use.
public DaoCriteria,Azavea.Open.DAO.Criteria Criteria
리턴 Azavea.Open.DAO.Criteria.DaoCriteria