如何根据函数触发器中的属性绑定azure函数输入?

时间:2016-06-01 11:55:43

标签: c# azure azure-functions

我想创建一个由Event Hub消息触发的Azure功能。我还想使用DocumentDb中的Document,从触发器消息的内容(事件中心消息)中获取DocumentId。 我不明白这是怎么可能的,我怀疑是不是,但我想尝试一下。 在输入中,我选择了DocumentDB并在DocumentId输入框中(默认为{documentId}),我输入了{myEventHubMessage.DocumentId},其中myEventHubMessage是我的触发器的名称,DocumentId是消息内容中的json属性。 / p>

知道这是否可行以及我如何解决这个问题(没有在我的函数中硬编码DocDb连接字符串)

1 个答案:

答案 0 :(得分:5)

是的,这是可能的。下面是一个C#示例,首先显示代码,然后显示绑定元数据。对于像Node这样的其他语言,绑定元数据将是相同的,只是代码不同。 DocumentDB绑定通过绑定表达式 {DocId} 绑定到传入消息的 DocId 属性。

以下是代码:

#r "Microsoft.ServiceBus"

using System;
using Microsoft.ServiceBus.Messaging;

public static void Run(MyEvent evt, MyDocument document, TraceWriter log)
{
    log.Info($"C# Event Hub trigger function processed event: {evt.Id}");
    log.Info($"Document {document.Id} loaded. Value {document.Value}");
}

public class MyEvent
{
    public string Id { get; set; }
    public string DocId { get; set; }
}

public class MyDocument
{
    public string Id { get; set; }
    public string Value { get; set; }
}

绑定元数据:

{
  "bindings": [
    {
      "type": "eventHubTrigger",
      "name": "evt",
      "direction": "in",
      "path": "testhub",
      "connection": "<your connection>"
    },
    {
      "type": "documentdb",
      "name": "document",
      "databaseName": "<your database>",
      "collectionName": "<your collection>",
      "id": "{DocId}",
      "connection": "<your connection>",
      "direction": "in"
    }
  ]
}