Click or drag to resize

IQueryRow Interface

An interface describing an entry of a result set for a plain value query

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0125
Syntax
C#
public interface IQueryRow

The IQueryRow type exposes the following members.

Properties
  NameDescription
Public propertyDocument
Gets the document that was used for creating this entry
Public propertyDocumentID
Gets the ID of the document that was used for creating this entry
Public propertySequence
Gets the sequence of the document that was used for creating this entry
Top
Methods
  NameDescription
Public methodGetBoolean
Gets the Boolean value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
Public methodGetDate
Gets the DateTimeOffset value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
Public methodGetDouble
Gets the Double value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
Public methodGetInt
Gets the Int32 value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
Public methodGetLong
Gets the Int64 value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
Public methodGetObject
Gets the value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
Public methodGetString
Gets the String value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
Top
See Also