持久函数可以调用泛型函数吗

时间:2019-02-26 09:37:37

标签: generics .net-core azure-durable-functions

我想在几个持久函数中重用活动函数。唯一的区别是输入参数类型。我希望做这样的事情:

[FunctionName("WriteToBlobStorage")]
public static async Task WriteToBlobStorage<T>(
    [ActivityTrigger] List<T> trigger
    )
{
...
}

当这样调用时:

await context.CallActivityAsync<List<Activation>>("WriteToBlobStorage", results);

我得到了例外

  

'WriteToBlobStorage'函数不存在,已禁用或不是活动函数。附加信息:以下是活动活动功能:…

是否可以调用通用活动函数?

0 个答案:

没有答案