Class TermRangeQuery.ReadOnly
Inheritance
TermRangeQuery.ReadOnly
Assembly: Couchbase.NetClient.dll
Syntax
public record TermRangeQuery.ReadOnly : IEquatable<TermRangeQuery.ReadOnly>
Constructors
|
Edit this page
View Source
ReadOnly(string, bool, string, bool, string)
Declaration
public ReadOnly(string Min, bool MinInclusive, string Max, bool MaxInclusive, string Field)
Parameters
Properties
|
Edit this page
View Source
Field
Declaration
public string Field { get; init; }
Property Value
|
Edit this page
View Source
Max
Declaration
public string Max { get; init; }
Property Value
|
Edit this page
View Source
MaxInclusive
Declaration
public bool MaxInclusive { get; init; }
Property Value
|
Edit this page
View Source
Min
Declaration
public string Min { get; init; }
Property Value
|
Edit this page
View Source
MinInclusive
Declaration
public bool MinInclusive { get; init; }
Property Value
Implements