gpt4 book ai didi

c# - Azure表: Fetch without create a specific class or knowing the whole schema

转载 作者:行者123 更新时间:2023-11-30 21:05:19 28 4
gpt4 key购买 nike

我有一个表“常量”,其中包含特定的模式,例如:
PartitionKey、RowKey、时间戳、ARG1、ARG2、ARG3

例如这些实体:
生产,0,01/01/2012,L,5,7
生产, 1, 01/01/2012, F, 7, 7

我可以在不创建类的情况下获取实体吗?
类似于:

var query = MagicFunctionWichGiveAEntity("production", "0"); //0 is the RowKey  
var result = query.ValueOf("ARG1") // result = L

我找到了this post但看起来很复杂。

最佳答案

执行此操作的唯一方法是使用 ReadingEntity 事件(如您引用的帖子中所述)。如果您想查看完整的工作实现,我建议您查看位于此处的存储服务智能客户端:http://archive.msdn.microsoft.com/appfabriccat/Release/ProjectReleases.aspx?ReleaseId=5474

您需要查看这些文件:

  • Client\Helpers\CloudStorageHelper.cs
  • Client\Helpers\ConversionHelper.cs
  • Client\Helpers\CustomEntity.cs

另一种解决方案是直接与 REST API 交互,您可以在其中获取 XML 格式的实体:http://msdn.microsoft.com/en-us/library/windowsazure/dd179421

关于c# - Azure表: Fetch without create a specific class or knowing the whole schema,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11757561/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com