在Azure DocumentDB选择查询中选择属性和自链接

时间:2016-01-08 10:15:34

标签: c# azure-cosmosdb

我正在使用c#从Azure DocumentDB中选择文档,其代码如下:

var documents = _connection.Client.CreateDocumentQuery<Document>(_collection.DocumentsLink,
    "SELECT {'id':s.Id, 'property1':s.property1} AS customDoc FROM Name1 s").ToList();

如何在我选择的“自定义”文档中添加自链接? 如果我使用星号,我可以访问自链接,但我不想选择所有属性。包含所有属性的示例查询:

"SELECT * FROM Name1"

有没有办法选择某些属性并添加自链接?

1 个答案:

答案 0 :(得分:1)

是的,您可以添加与您选择的其他节点相同的自链接。使用您的代码示例,只需添加对s._self的引用并为其命名(我将其命名为_self以保持一致性,但您可以随意调用它。)

    var documents = _connection.Client.CreateDocumentQuery<Document>(_collection.DocumentsLink,
    "SELECT {'id':s.Id, 'property1':s.property1, '_self' : s._self} AS customDoc FROM Name1 s").ToList();