Azure / Webjobs.Extensions.Kusto

Azure functions Input and output bindings for Kusto (ADX)
MIT License
4 stars 4 forks source link

Typo in GetProducts.cs sample #52

Open swifteralex opened 7 months ago

swifteralex commented 7 months ago

Line 14 of https://github.com/Azure/Webjobs.Extensions.Kusto/blob/main/samples/samples-outofproc/InputBindingSamples/GetProducts.cs should be [FunctionName("GetProducts")] instead of [Function("GetProducts")]

ag-ramachandran commented 7 months ago

Hello @swifteralex

It is Function for out-of-process bindings and FunctionName for inprocess bindings. The links are samples from another binding [Blob], but the idea is the same.

The sample in this folder is for out of process bindings.