You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with "direction" set to "out". When the function runs, everything works as expected. Shouldn't the "direction" be set to "in" for an IQueryable<T> Table binding? According to the documentation for table bindings, IQueryable<T> is only valid for an input binding.
The text was updated successfully, but these errors were encountered:
I have the following parameter in a function decorated with the
TableAttribute
:[Table("%ArchiveTableName%", Connection="ArchiveTableConnection")] IQueryable<ArchivedEntity> tableQueryable
Which results in the following binding configuration in function.json:
with
"direction"
set to"out"
. When the function runs, everything works as expected. Shouldn't the"direction"
be set to"in"
for anIQueryable<T>
Table binding? According to the documentation for table bindings,IQueryable<T>
is only valid for an input binding.The text was updated successfully, but these errors were encountered: