DynamicTableEntity.ReadEntity Method

Definition

Deserializes this DynamicTableEntity instance using the specified IDictionary<TKey,TValue> of property names to values of type EntityProperty.

public void ReadEntity (System.Collections.Generic.IDictionary<string,Microsoft.Azure.Cosmos.Table.EntityProperty> properties, Microsoft.Azure.Cosmos.Table.OperationContext operationContext);
abstract member ReadEntity : System.Collections.Generic.IDictionary<string, Microsoft.Azure.Cosmos.Table.EntityProperty> * Microsoft.Azure.Cosmos.Table.OperationContext -> unit
override this.ReadEntity : System.Collections.Generic.IDictionary<string, Microsoft.Azure.Cosmos.Table.EntityProperty> * Microsoft.Azure.Cosmos.Table.OperationContext -> unit
Public Sub ReadEntity (properties As IDictionary(Of String, EntityProperty), operationContext As OperationContext)

Parameters

properties
IDictionary<String,EntityProperty>

A collection containing the IDictionary<TKey,TValue> of string property names mapped to values of type EntityProperty to store in this DynamicTableEntity instance.

operationContext
OperationContext

An OperationContext object that represents the context for the current operation.

Implements

Remarks

The properties dictionary passed to this API is stored internally as a reference, not a copy.

Applies to