对 Azure 表使用 Get Entities 操作时,如何删除 odata.etag?
Posted
技术标签:
【中文标题】对 Azure 表使用 Get Entities 操作时,如何删除 odata.etag?【英文标题】:How can you remove the odata.etag when using the Get Entities action with an Azure Table? 【发布时间】:2020-09-05 16:44:37 【问题描述】:从 Azure 表中获取实体时如何避免获取 odata.etag?
“获取实体结果”有一个“odata.etag”...
[
"odata.etag": "W/\"datetime'2020-05-19T14%3A33%3A23.31704Z'\"",
"PartitionKey": "author",
"RowKey": "1",
"Timestamp": "2020-05-19T14:33:23.31704Z",
"AuthorName": "steve",
"ChapterTitle": null,
"Twitter": "@steve"
,
而如果我通过 REST API 并将 Accept 标头设置为 application/json;odata=nometadata
,我可以在没有任何 OData 额外位的情况下获取数据,例如
"value": [
"PartitionKey": "author",
"RowKey": "1",
"Timestamp": "2020-05-19T14:33:23.31704Z",
"AuthorName": "steve",
"Twitter": "@steve"
,
【问题讨论】:
【参考方案1】:根据一些测试,在逻辑应用的响应数据中似乎无法避免字段odata.etag
。如果不需要此字段,可以在逻辑应用中请求 REST API。就像我的逻辑应用如下所示:
或者您可以使用integration account,将其与您的逻辑应用绑定。然后使用 Liquid 映射从“获取实体”操作的 json 响应中删除 odata.etag
字段。
更新:
这是另一种更简单的解决方法供您参考,我们可以在逻辑应用中使用“Select”。
【讨论】:
以上是关于对 Azure 表使用 Get Entities 操作时,如何删除 odata.etag?的主要内容,如果未能解决你的问题,请参考以下文章
带有 .Get() 对 Azure 搜索 API 的请求的 Angular HttpClient“未知错误”
Linq to Entities - 使用 Include() 急切加载
linQ to entities不识别方法Models.Repository.Student get_Item(Int32)'方法