Click or drag to resize

SearchRangeBuilderLtTValue Method (SearchRangeTValue, TValue)

Adds a less than value to a search range.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public static SearchRange<TValue> Lt<TValue>(
	this SearchRange<TValue> searchRange,
	TValue value
)
where TValue : struct, new(), IComparable<TValue>

Parameters

searchRange
Type: MongoDB.Driver.SearchSearchRangeTValue
Search range.
value
Type: TValue
The value.

Type Parameters

TValue

[Missing <typeparam name="TValue"/> documentation for "M:MongoDB.Driver.Search.SearchRangeBuilder.Lt``1(MongoDB.Driver.Search.SearchRange{``0},``0)"]

Return Value

Type: SearchRangeTValue
Search range.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SearchRangeTValue. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also