Show / Hide Table of Contents

Class QueryResultCollection

The result of a query.

Inheritance
object
QueryResultCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.NosqlService.Models
Assembly: OCI.DotNetSDK.Nosql.dll
Syntax
public class QueryResultCollection

Properties

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<Dictionary<string, object>> Items { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

Array of objects representing query results.

Usage

Declaration
[JsonProperty(PropertyName = "usage")]
public RequestUsage Usage { get; set; }
Property Value
Type Description
RequestUsage
In this article
Back to top