有没有办法在类似于 c# 的 java azure 函数中绑定表
[FunctionName("TableInput")]
public static void Run(
[QueueTrigger("table-items")] string input,
[Table("MyTable", "Http", "{queueTrigger}", Connection =
"StorageConnectionAppSetting")] MyPoco poco,
TraceWriter log)
{
...
}
像这样的东西?我不想使用 azure 存储库来手动获取表。