C# 클래스 Arango.Client.AIndex

파일 보기 프로젝트 열기: yojimbo87/ArangoDB-NET

공개 메소드들

메소드 설명
Create ( string collectionName ) : object>>.AResult

Creates index within specified collection in current database context.

Delete ( string id ) : object>>.AResult

Deletes specified index.

Fields ( ) : AIndex

Determines an array of attribute paths in the collection with hash, fulltext, geo or skiplist indexes.

GeoJson ( bool value ) : AIndex

Determines if the order within the array is longitude followed by latitude in geo index.

Get ( string id ) : object>>.AResult

Retrieves specified index.

MinLength ( int value ) : AIndex

Determines minimum character length of words for fulltext index. Will default to a server-defined value if unspecified. It is thus recommended to set this value explicitly when creating the index.

Sparse ( bool value ) : AIndex

Determines if the hash or skiplist index should be sparse.

Type ( AIndexType value ) : AIndex

Determines type of the index.

Unique ( bool value ) : AIndex

Determines if the hash or skiplist index should be unique.

비공개 메소드들

메소드 설명
AIndex ( Connection connection ) : System

메소드 상세

Create() 공개 메소드

Creates index within specified collection in current database context.
public Create ( string collectionName ) : object>>.AResult
collectionName string
리턴 object>>.AResult

Delete() 공개 메소드

Deletes specified index.
Specified id value has invalid format.
public Delete ( string id ) : object>>.AResult
id string
리턴 object>>.AResult

Fields() 공개 메소드

Determines an array of attribute paths in the collection with hash, fulltext, geo or skiplist indexes.
public Fields ( ) : AIndex
리턴 AIndex

GeoJson() 공개 메소드

Determines if the order within the array is longitude followed by latitude in geo index.
public GeoJson ( bool value ) : AIndex
value bool
리턴 AIndex

Get() 공개 메소드

Retrieves specified index.
Specified id value has invalid format.
public Get ( string id ) : object>>.AResult
id string
리턴 object>>.AResult

MinLength() 공개 메소드

Determines minimum character length of words for fulltext index. Will default to a server-defined value if unspecified. It is thus recommended to set this value explicitly when creating the index.
public MinLength ( int value ) : AIndex
value int
리턴 AIndex

Sparse() 공개 메소드

Determines if the hash or skiplist index should be sparse.
public Sparse ( bool value ) : AIndex
value bool
리턴 AIndex

Type() 공개 메소드

Determines type of the index.
public Type ( AIndexType value ) : AIndex
value AIndexType
리턴 AIndex

Unique() 공개 메소드

Determines if the hash or skiplist index should be unique.
public Unique ( bool value ) : AIndex
value bool
리턴 AIndex