Timer trigger azure function with table storage input binding

779 Views Asked by At

so I have an azure table that has a list of users (identified by the row and partition key) and their activityStatus which is either 1 (completed) or 0 (not completed).

I am trying to make a simple azure function that checks the activityStatus of every user every day at 5pm and records the row and partition keys of all the users who have not completed their exercises to a different azure table.

So I created a timer triggered azure function set to trigger every day at 5 pm, and then created an input and output binding to my azure tables and now I have no idea what to do next?

I can't find any tutorials of how to read the input table data from my timer triggered azure function and also how to filter data using the activityStatus entity and then how to record and enter the data to a new table.

Any help or direction to a good tutorial/resource would be very appreciated.

1

There are 1 best solutions below

1
On