Table of Contents

Class ComputedPropertiesDefinition<T>

Namespace
Microsoft.Azure.Cosmos.Fluent
Assembly
Microsoft.Azure.Cosmos.Client.dll

Computed Properties fluent definition.

public class ComputedPropertiesDefinition<T>

Type Parameters

T
Inheritance
ComputedPropertiesDefinition<T>
Inherited Members
Extension Methods

Methods

Attach()

Applies the current definition to the parent.

public T Attach()

Returns

T

An instance of the parent.

WithComputedProperty(string, string)

Adds a computed property to the current ComputedPropertiesDefinition<T>

public ComputedPropertiesDefinition<T> WithComputedProperty(string name, string query)

Parameters

name string

Name of the computed property

query string

Query for the computed property values

Returns

ComputedPropertiesDefinition<T>

An instance of the current ComputedPropertiesDefinition<T>

See Also