Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Interface IViewRow<TKey, TValue>

A row returned by a view query.

Namespace: Couchbase.Views
Assembly: Couchbase.NetClient.dll
Syntax
[Obsolete("The View service has been deprecated use the Query service instead.")]
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

View Source

Id

The identifier for the row.

Declaration
string? Id { get; }
Property Value
Type Description
string
View Source

Key

The key emitted by the View Map function.

Declaration
TKey Key { get; }
Property Value
Type Description
TKey
View Source

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
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.