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)
Syntaxpublic IViewQuery StartKey(
Object startKey,
bool encode
)
public IViewQuery StartKey(
Object startKey,
bool encode
)
Public Function StartKey (
startKey As Object,
encode As Boolean
) As IViewQuery
Public Function StartKey (
startKey As Object,
encode As Boolean
) As IViewQuery
public:
virtual IViewQuery^ StartKey(
Object^ startKey,
bool encode
) sealed
public:
virtual IViewQuery^ StartKey(
Object^ startKey,
bool encode
) sealed
abstract StartKey :
startKey : Object *
encode : bool -> IViewQuery
override StartKey :
startKey : Object *
encode : bool -> IViewQuery
abstract StartKey :
startKey : Object *
encode : bool -> IViewQuery
override StartKey :
startKey : Object *
encode : bool -> IViewQuery
Parameters
- startKey
- Type: System.Object
The key to return records greater than or equal to.
- encode
- Type: System.Boolean
True to JSON encode and URI escape the value.
Return Value
Type:
IViewQueryAn IViewQuery object for chaining
Implements
IViewQuery.StartKey(Object, Boolean)
See Also