使用Azure Functions定时清理Azure SQL数据库
今天的案例,需求来自公众号的网友留言,需求如下: 将原来部署在VM里的定时服务迁移到Server less 的Azure Functions, 执行的主要操作为定时处理Azure SQL 数据库。 示意图如下: 本案例对该需求进行了简化,最终如下所示: 每一分钟,从Azure SQL数据库查询一次数据; 开发环境:开发工具VS2019 + C#; 完整的操作视频如下: B站视频: https://www.bilibili.com/video/av89405896/ 或在本站观看: using System; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Host; using Microsoft.Extensions.Logging; using …