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