Related data from SQLTrigger? #797
-
I have an Azure function that is using the SqlTrigger binding. Is there any possible configuration that would let me get related data from another table populated in the bound list of SQLChange (sort of like eager loading in EF)? If not, I'm assuming a separate input binding would be the best solution? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Currently no, not directly at least. Using an input binding would be an option - although that would require either setting up another function that the one with the sql trigger calls (passing it the appropriate information from the trigger) or using imperative bindings for C# functions to dynamically call the input binding. |
Beta Was this translation helpful? Give feedback.
Currently no, not directly at least. Using an input binding would be an option - although that would require either setting up another function that the one with the sql trigger calls (passing it the appropriate information from the trigger) or using imperative bindings for C# functions to dynamically call the input binding.