public T FromEntity(DynamicTableEntity entity)
 {
     return(entity.FromTableEntity(_partitionMapper.KeyProperty, _partitionMapper.FromKey, _rowMapper.KeyProperty,
                                   _rowMapper.FromKey));
 }
Пример #2
0
 public static T FromTableEntity <T>(this DynamicTableEntity entity) where T : new()
 {
     return(entity.FromTableEntity <T, object, object>(null, null, null, null));
 }
 public T FromEntity(DynamicTableEntity entity)
 {
     return(entity.FromTableEntity <T, TPartitionKey, TRowKey>(_partitionProperty, _rowProperty));
 }