Interface IViewRow<TKey, TValue>
A row returned by a view query.
Namespace: Couchbase.Views
Assembly: Couchbase.NetClient.dll
Syntax
public interface IViewRow<out TKey, out TValue>
Type Parameters
Name | Description |
---|---|
TKey | Type of the key for each result row. |
TValue | Type of the value for each result row. |
Properties
| Edit this page View SourceId
The identifier for the row.
Declaration
string? Id { get; }
Property Value
Type | Description |
---|---|
string |
Key
The key emitted by the View Map function.
Declaration
TKey Key { get; }
Property Value
Type | Description |
---|---|
TKey |
Value
The value emitted by the View Map function or if a Reduce view, the value of the Reduce.
Declaration
TValue Value { get; }
Property Value
Type | Description |
---|---|
TValue |