Class NumericRangeQuery.ReadOnly
Inheritance
NumericRangeQuery.ReadOnly
Assembly: Couchbase.NetClient.dll
Syntax
public record NumericRangeQuery.ReadOnly : IEquatable<NumericRangeQuery.ReadOnly>
Constructors
|
Edit this page
View Source
ReadOnly(double?, bool, double?, bool, string)
Declaration
public ReadOnly(double? Min, bool MinInclusive, double? 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 double? 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 double? Min { get; init; }
Property Value
|
Edit this page
View Source
MinInclusive
Declaration
public bool MinInclusive { get; init; }
Property Value
Implements