Class Query.Container
Represents a Cosmos DB container reference in the FROM or JOIN clause.
Inherited Members
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 |