TableEntity.ConvertBack Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.Azure.Cosmos.Table.EntityProperty> properties, Microsoft.Azure.Cosmos.Table.OperationContext operationContext);
static member ConvertBack : System.Collections.Generic.IDictionary<string, Microsoft.Azure.Cosmos.Table.EntityProperty> * Microsoft.Azure.Cosmos.Table.OperationContext -> 'Result
Public Shared Function ConvertBack(Of TResult) (properties As IDictionary(Of String, EntityProperty), operationContext As OperationContext) As TResult
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
Applies to
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.Azure.Cosmos.Table.EntityProperty> properties, Microsoft.Azure.Cosmos.Table.EntityPropertyConverterOptions entityPropertyConverterOptions, Microsoft.Azure.Cosmos.Table.OperationContext operationContext);
static member ConvertBack : System.Collections.Generic.IDictionary<string, Microsoft.Azure.Cosmos.Table.EntityProperty> * Microsoft.Azure.Cosmos.Table.EntityPropertyConverterOptions * Microsoft.Azure.Cosmos.Table.OperationContext -> 'Result
Public Shared Function ConvertBack(Of TResult) (properties As IDictionary(Of String, EntityProperty), entityPropertyConverterOptions As EntityPropertyConverterOptions, operationContext As OperationContext) As TResult
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.