C# 클래스 Couchbase.Search.Queries.Simple.TermQuery

A term query is a query that may be "fuzzy" and matches terms within a specified edit distance (Levenshtein distance). Also, you can optionally specify that the term must have a matching prefix of the specified length.
상속: FtsQueryBase
파일 보기 프로젝트 열기: couchbase/couchbase-net-client 1 사용 예제들

공개 메소드들

메소드 설명
Export ( ) : Newtonsoft.Json.Linq.JObject
Field ( string field ) : TermQuery

The field to search against.

Fuzziness ( int fuzziness ) : TermQuery
PrefixLength ( int prefixLength ) : TermQuery
TermQuery ( string term ) : System

메소드 상세

Export() 공개 메소드

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

Field() 공개 메소드

The field to search against.
public Field ( string field ) : TermQuery
field string The field.
리턴 TermQuery

Fuzziness() 공개 메소드

public Fuzziness ( int fuzziness ) : TermQuery
fuzziness int
리턴 TermQuery

PrefixLength() 공개 메소드

public PrefixLength ( int prefixLength ) : TermQuery
prefixLength int
리턴 TermQuery

TermQuery() 공개 메소드

public TermQuery ( string term ) : System
term string
리턴 System