DataWeb
Search Results for

    Show / Hide Table of Contents

    Class Query.Container

    Represents a Cosmos DB container reference in the FROM or JOIN clause.

    Inheritance
    object
    Query.Container
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: DataWeb.Data.AzureCosmosDB
    Assembly: DataWeb.Data.AzureCosmosDB.dll
    Syntax
    public class Query.Container

    Constructors

    Container(string, string, string)

    Represents a Cosmos DB container reference in the FROM or JOIN clause.

    Declaration
    public Container(string name, string alias = null, string subqueryStatement = null)
    Parameters
    Type Name Description
    string name
    string alias
    string subqueryStatement

    Properties

    Alias

    Alias used to reference the container in the query.

    Declaration
    public string Alias { get; set; }
    Property Value
    Type Description
    string

    Name

    Container name (maps to the FROM clause).

    Declaration
    public string Name { get; set; }
    Property Value
    Type Description
    string

    SubqueryStatement

    Optional subquery WHERE expression used in a self-join.

    Declaration
    public string SubqueryStatement { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Generated by DocFX