Electron publish to Azure SQL database

I am working on an application to get data events from Electron devices into a SQL database on Azure.
Right now I have a C# (visual studio) App that publishes ok to Azure and uses a remote SQL database also hosted on Azure.
The next step is to figure out how to get data from the Electron to the database.
From what I can see, it appears I would publish the data to particle and have a webhook doing a POST of the data event to my Azure url?
If this is the case then I can see there is quite good webhooks examples and tutorials but I am interested in learning how to set up a listener in my C# code that can receive the data and pop it into the database.

Thanks