C# VersionOne-新的query.v1是否支持提取附件?

C# VersionOne-新的query.v1是否支持提取附件?,c#,rest,versionone,C#,Rest,Versionone,VersionOne-新的query.v1是否支持提取附件? 如果是,有人能举个例子吗 这个query.v1刚刚在2013年夏季发布(13.2版) 是的 from: Attachment select: - Name - ContentType - Content Blob字段(内容)返回为Base64 [ [ { "_oid": "Attachment:1783", "Name": "Attachment A", "ContentT

VersionOne-新的query.v1是否支持提取附件? 如果是,有人能举个例子吗

这个query.v1刚刚在2013年夏季发布(13.2版)

是的

from: Attachment
select:
  - Name
  - ContentType
  - Content
Blob字段(内容)返回为Base64

[
  [
    {
      "_oid": "Attachment:1783",
      "Name": "Attachment A",
      "ContentType": "text/plain",
      "Content": "VGhpcyBpcyB ...base64 encoded bytes here... hdHRhY2htZW50"
    }
  ]
]