Arango.Client.AIndex.MinLength C# (CSharp) Метод

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
        public AIndex MinLength(int value)
        {
            _parameters.Int(ParameterName.MinLength, value);
        	
        	return this;
        }