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
)
public IViewQuery StartKey(
Object startKey
)
Public Function StartKey (
startKey As Object
) As IViewQuery
Public Function StartKey (
startKey As Object
) As IViewQuery
public:
virtual IViewQuery^ StartKey(
Object^ startKey
) sealed
public:
virtual IViewQuery^ StartKey(
Object^ startKey
) sealed
abstract StartKey :
startKey : Object -> IViewQuery
override StartKey :
startKey : Object -> IViewQuery
abstract StartKey :
startKey : Object -> IViewQuery
override StartKey :
startKey : Object -> IViewQuery
Parameters
- startKey
- Type: System.Object
The key to return records greater than or equal to.
Return Value
Type:
IViewQueryAn IViewQuery object for chaining
Implements
IViewQuery.StartKey(Object)
See Also