[Azure雲端服務及應用開發]_群組移除用戶功能)_part5
圖片摘自: 下班後紓壓4招 切換成「返家模式」 佩脫拉克:我是凡人,我只要求凡人的幸福。 有添加至群組後看起來還差從群組移除的功能 用戶可能突然想換群組或是進錯群組之類的.... 可能白天是個worker 晚上下班後是其他人的husband 或 wife 新增Azure Function 依舊選 Http trigger 跟 Anonymous 在來函數型態結構還有前置作業大致上跟AddToGroup都差不多 只有後續移除部分 GroupAction 的 Enum要記得改成Remove 透過TableQuery去取得User Entity集合 (已經Linq 過濾出特定User) 隨後進行Iterate Delete 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 using System ; using System.IO ; using System.Threading.Tasks ; using Microsoft.AspNetCore.Mvc ; using Microsoft.Azure.WebJobs ; using Microsoft.Azure.WebJobs.Extensions.Http ; using Microsoft.AspNetCore.Http ; using Microsoft.Extensions.Logging ; using Newtonsoft.Json ; using Microsoft.Azure.WebJobs.Extensions.SignalRService ; using KYChat.Messages ; using Microsoft.WindowsAzure.Storage.Table ; using KYChat.Functions.Models ; namespace KYChat.Functi