反序列化从Azure表检索的DynamicTableEntity

时间:2018-09-27 15:07:45

标签: c# azure azure-table-storage azure-tablequery

我想打印从Azure表检索的DynamicTableEntity对象。我不知道所检索对象的属性。

使用Newtonsoft.Json时出现错误

var toreturn = JsonConvert.SerializeObject(retrievedEntitity);
  

“从'Microsoft.WindowsAzure.Storage.Table.EntityProperty'的'BinaryValue'获取值时出错。”

如何序列化DynamicTableEntity类型的检索到的实体?

1 个答案:

答案 0 :(得分:2)

  

如何序列化DynamicTableEntity类型的检索到的实体?

可以通过DynamicTableEntityJsonSerializer完成。

project
|_Projects
     |_index.js
     |_ProjectList.js
     |_Card.js
     |_CardHeader.js
     |_CardBody.js
     |_CardFooter.js
     |_TasksCounter.js
     |_ProjectDescription.js
     |_CardAdd.js
     |_actions.js
     |_reducer.js
     |_saga.js
|_ProjectCreate
     |_index.js
     |_Form.js
     |_actions.js
     |_reducer.js
     |_saga.js
|_ProjectShow
     |_index.js
     |_ProjectHeader.js
     |_ProjectContent.js
     |_actions.js
     |_reducer.js
     |_saga.js

测试结果:

enter image description here