IBucketCreateQuery Method (Boolean, String, String) |
Creates an instance of an object that implements
IViewQuery, which targets a given bucket and design document.
Namespace: Couchbase.CoreAssembly: Couchbase (in Couchbase.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxIViewQuery CreateQuery(
bool development,
string designdoc,
string view
)
Function CreateQuery (
development As Boolean,
designdoc As String,
view As String
) As IViewQuery
IViewQuery^ CreateQuery(
bool development,
String^ designdoc,
String^ view
)
abstract CreateQuery :
development : bool *
designdoc : string *
view : string -> IViewQuery
Parameters
- development
- Type: SystemBoolean
True will execute on the development dataset. - designdoc
- Type: SystemString
The design document that the View belongs to. - view
- Type: SystemString
The View to query.
Return Value
Type:
IViewQueryAn
IViewQuery which can have more filters and options applied to it.
See Also