Precompiled Azure function and CloudTable binding output doesn't work

后端 未结 3 738
既然无缘
既然无缘 2020-12-17 03:52

I\'m using a precompiled Azure Function that looks:

public static async Task Run(Stream inputBlob, Stream outputJson, Stream outputXml, CloudTable schedulerT         


        
3条回答
  •  感情败类
    2020-12-17 04:27

    You're likely running into type mismatch issues. What version of the storage SDK are you using? You need to make sure storage SDK references match what the runtime expects, which currently is 7.2.1.

    Please make sure that you're referencing the storage SDK version 7.2.1.

提交回复
热议问题