TableEntity.ConvertBack Method

Definition

Overloads

ConvertBack<TResult>(IDictionary<String,EntityProperty>, OperationContext)

Returns a custom entity instance which is recomposed using the specified IDictionary<TKey, TValue> of property names to EntityProperty data typed values.

ConvertBack<TResult>(IDictionary<String,EntityProperty>, EntityPropertyConverterOptions, OperationContext)

Returns a custom entity instance which is recomposed using the specified IDictionary<TKey, TValue> of property names to EntityProperty data typed values.

ConvertBack<TResult>(IDictionary<String,EntityProperty>, OperationContext)

Returns a custom entity instance which is recomposed using the specified IDictionary<TKey, TValue> of property names to EntityProperty data typed values.

public static TResult ConvertBack<TResult> (System.Collections.Generic.IDictionary<string,Microsoft.WindowsAzure.Storage.Table.EntityProperty> properties, Microsoft.WindowsAzure.Storage.OperationContext operationContext);
Type Parameters
TResult

The type of the recomposed object. This can be a simple object with a flat structure or a complex object with complex properties and multiple levels of object hierarchy.

Parameters
properties
IDictionary<String,EntityProperty>

An IDictionary<TKey, TValue> object that maps string property names to EntityProperty data values to deserialize and store in this table entity instance.

operationContext
OperationContext

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

Returns
TResult

ConvertBack<TResult>(IDictionary<String,EntityProperty>, EntityPropertyConverterOptions, OperationContext)

Returns a custom entity instance which is recomposed using the specified IDictionary<TKey, TValue> of property names to EntityProperty data typed values.

public static TResult ConvertBack<TResult> (System.Collections.Generic.IDictionary<string,Microsoft.WindowsAzure.Storage.Table.EntityProperty> properties, Microsoft.WindowsAzure.Storage.Table.EntityPropertyConverterOptions entityPropertyConverterOptions, Microsoft.WindowsAzure.Storage.OperationContext operationContext);
Type Parameters
TResult

The type of the recomposed object. This can be a simple object with a flat structure or a complex object with complex properties and multiple levels of object hierarchy.

Parameters
properties
IDictionary<String,EntityProperty>

An IDictionary<TKey, TValue> object that maps string property names to EntityProperty data values to deserialize and store in this table entity instance.

entityPropertyConverterOptions
EntityPropertyConverterOptions

A EntityPropertyConverterOptions object that specifies options for the entity property conversion.

operationContext
OperationContext

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

Returns
TResult