Related data from SQLTrigger? #797
Answered
by
Charles-Gagnon
gsmith-yprime
asked this question in
Q&A
|
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? |
Answered by
Charles-Gagnon
Apr 10, 2023
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. |
0 replies
Answer selected by
gsmith-yprime
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to 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.