- Azure Serverless Computing Cookbook
- Praveen Kumar Sreeram
- 190字
- 2021-07-02 20:23:02
How it works...
Azure Functions allows us to easily integrate with other Azure services just by adding an output binding to the trigger. For this example, we have integrated the HTTP trigger with the Azure Storage table binding and also configured the Azure Storage account by providing the storage connection string and the Azure Storage table name in which we would like to create a record for each of the HTTP requests received by the HTTP trigger.
We have also added an additional parameter for handling the table storage named objUserProfileTable, of type CloudTable, to the Run method. We can perform all the operations on the Azure Table storage using objUserProfileTable.
We have also created an object of UserProfile, and filled it with the values received in the request object, and then passed it to a table operation. You can learn more about handling operations on Azure Table storage service from the URL https://docs.microsoft.com/en-us/azure/storage/storage-dotnet-how-to-use-tables.
- Cocos2d Cross-Platform Game Development Cookbook(Second Edition)
- JavaScript+jQuery開發(fā)實(shí)戰(zhàn)
- 機(jī)器人Python青少年編程開發(fā)實(shí)例
- Vue.js 3.0源碼解析(微課視頻版)
- Learn Scala Programming
- Object-Oriented JavaScript(Second Edition)
- TypeScript圖形渲染實(shí)戰(zhàn):基于WebGL的3D架構(gòu)與實(shí)現(xiàn)
- 利用Python進(jìn)行數(shù)據(jù)分析(原書第3版)
- 青少年信息學(xué)競(jìng)賽
- 微服務(wù)從小白到專家:Spring Cloud和Kubernetes實(shí)戰(zhàn)
- Python語(yǔ)言實(shí)用教程
- Java Web從入門到精通(第3版)
- Oracle實(shí)用教程
- Web程序設(shè)計(jì):ASP.NET(第2版)
- Django 3 Web Development Cookbook