Class SearchQueryBase
Inheritance
SearchQueryBase
Assembly: Couchbase.NetClient.dll
Syntax
public abstract class SearchQueryBase : ISearchQuery
Constructors
View Source
SearchQueryBase()
Declaration
protected SearchQueryBase()
Fields
View Source
IndexName
Declaration
protected string IndexName
Field Value
View Source
Query
Declaration
Field Value
Properties
View Source
BoostValue
Declaration
public float BoostValue { get; }
Property Value
Methods
View Source
Boost(double)
Used to increase the relative weight of a clause (with a boost greater than 1) or decrease the relative weight (with a boost between 0 and 1).
Declaration
public ISearchQuery Boost(double boost)
Parameters
| Type |
Name |
Description |
| double |
boost |
|
Returns
View Source
Export()
Gets a JSON object representing this query instance />
Declaration
[RequiresUnreferencedCode("Couchbase FTS might require types that cannot be statically analyzed. Make sure all required types are preserved.")]
[RequiresDynamicCode("Couchbase FTS might require types that cannot be statically analyzed and might need runtime code generation. Do not use for native AOT applications.")]
public virtual JObject Export()
Returns
Implements
See Also