Return records with a value equal to or greater than the specified key. Key must be specified as a JSON value.
Namespace: Couchbase.ViewsAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
SyntaxIViewQuery StartKey(
Object endKey,
bool encode
)
IViewQuery StartKey(
Object endKey,
bool encode
)
Function StartKey (
endKey As Object,
encode As Boolean
) As IViewQuery
Function StartKey (
endKey As Object,
encode As Boolean
) As IViewQuery
IViewQuery^ StartKey(
Object^ endKey,
bool encode
)
IViewQuery^ StartKey(
Object^ endKey,
bool encode
)
abstract StartKey :
endKey : Object *
encode : bool -> IViewQuery
abstract StartKey :
endKey : Object *
encode : bool -> IViewQuery
Parameters
- endKey
- Type: System.Object
The key to return records greater than or equal to.
- encode
- Type: System.Boolean
True to JSON encode the parameter.
Return Value
Type:
IViewQueryAn IViewQuery object for chaining
See Also