C# 클래스 Couchbase.Search.Queries.Range.DateRangeQuery

The date range query finds documents containing a date value in the specified field within the specified range.
상속: FtsQueryBase
파일 보기 프로젝트 열기: couchbase/couchbase-net-client 1 사용 예제들

공개 메소드들

메소드 설명
End ( System.DateTime endTime, bool inclusive = false ) : DateRangeQuery

The end date of the range

Export ( ) : Newtonsoft.Json.Linq.JObject
Field ( string field ) : DateRangeQuery

If a field is specified, only terms in that field will be matched. This can also affect the used analyzer if one isn't specified explicitly.

Parser ( string name ) : DateRangeQuery

The name of the parser to use.

Start ( System.DateTime startTime, bool inclusive = true ) : DateRangeQuery

The start date of the range.

메소드 상세

End() 공개 메소드

The end date of the range
public End ( System.DateTime endTime, bool inclusive = false ) : DateRangeQuery
endTime System.DateTime The end time.
inclusive bool if set to true [inclusive].
리턴 DateRangeQuery

Export() 공개 메소드

public Export ( ) : Newtonsoft.Json.Linq.JObject
리턴 Newtonsoft.Json.Linq.JObject

Field() 공개 메소드

If a field is specified, only terms in that field will be matched. This can also affect the used analyzer if one isn't specified explicitly.
public Field ( string field ) : DateRangeQuery
field string The field.
리턴 DateRangeQuery

Parser() 공개 메소드

The name of the parser to use.
public Parser ( string name ) : DateRangeQuery
name string The name.
리턴 DateRangeQuery

Start() 공개 메소드

The start date of the range.
public Start ( System.DateTime startTime, bool inclusive = true ) : DateRangeQuery
startTime System.DateTime The start time.
inclusive bool if set to true [inclusive].
리턴 DateRangeQuery