All Posts in 2021.7


Power Apps 画布应用中非可委派函数查询数量限制

本文介绍: Power Apps 中的委派函数和非可委派函数。 现象: 在Power Apps中显示某些数据源时,如果数据量超过 500,则可能遇到现实不全的情况,实际上大部分是由于 委派函数 和 非可委派函数 使用不合适导致的。 所谓委派函数,是指实际的数据查询是由数据源完成的,比如 power apps 调用 filter 函数 查询了 SQL数据库或者 Share Point,实际的查询是在数据源侧也就是SQL或Share Point 执行的。这时候的返回值可以是超过500条数据的。 为什么提到500这个数字,是因为Power Apps画布应用的一个默认配置: 打开某个Power Apps的编辑模式,文件菜单-设置-数据行限制,该值默认是500,最大可以调整到2000。   注意,该值的配置是针对非可委派函数的,比如下方的函数,均为非可委派函数:   非可委派函数 所有其他函数都不 …

Power Platform Power Apps

Microsoft Connected Vehicle Platform (MCVP) -微软车联网知识汇总

The Microsoft Connected Vehicle Platform (MCVP) is the digital chassis upon which automotive original equipment manufacturers (OEMs) can deliver value-add services to their customers. These services areas include: In-vehicle experiences Autonomous driving Advanced navigation Customer engagement and insights Telematics and prediction services Connectivity and over the air updates (OTA)     案例: …

Azure MCVP

边缘设备上的存储-Azure IoT Edge 上的Blob存储

本文介绍Azure IoT Edge 上的Blob 存储配置。 当然,Blob容器也可以部署在本地Docker中或K8S中,IoT Edge 不是唯一的选择。   通过在IoT Edge上部署Blob存储,可以将原来直接上传到云端Storage的代码进行复用,文件可以存储在边缘上,然后利用blob容器的同步功能,自动将文件同步到云端。 本文部署过程参照: https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-deploy-blob?view=iotedge-2020-11&WT.mc_id=AZ-MVP-5003757 本文配置步骤参照: https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-store-data-blob?view=iotedge-2020-11&WT.mc_ …

Azure IOT Video IoT Edge

Azure Functions 同步Azure Storage Blob

本文介绍: 一种通过Azure Functions 同步 blob的方法。   在之前的内容中,我们分享过Azure Functions+azcopy的同步方式,今天我们介绍在Functions中使用blob sdk进行同步,使用该方案,可以将Functions 同时部署到云端或边缘侧。   示例代码:https://github.com/sean8544/azure-blob-sync-by-azure-function-blob-trigger   using System; using System.IO; using System.Linq; using System.Threading.Tasks; using Azure; using Azure.Storage.Blobs; using Azure.Storage.Blobs.Models; using Azure. …

Azure Storage Functions Azure Functions

Microsoft 365 和 Power Platform的数据位置查询

Microsoft 365(o365)的数据位置查询: Microsoft 365 后台(https://admin.microsoft.com/)-设置-组织设置-组织简介-数据位置   关于亚太区域具体在哪个数据中心? Microsoft 不会披露其数据中心的确切地址。 制定这项政策是为了帮助保护微软的数据中心设施。 但是,会列出城市位置: 有关详细信息,请参阅 https://docs.microsoft.com/zh-cn/microsoft-365/enterprise/o365-data-locations?view=o365-worldwide。 例如“亚太区域”的数据可能存储于下图所示的中国香港、日本、马来西亚、新加坡、韩国: 以下全球地理位置可以静态存储数据。 客户数据的存储位置可能会发生更改。 数据中心地理位置 全球地理位置 可以存储客户数据的位置 全球地理位置 …

Power Platform

Azure IoT Edge Transparent Gateway 透明网关-效果演示demo

本系列文章:  (1)Azure IoT Edge Transparent Gateway 概念 (2)Azure IoT Edge Transparent Gateway 准备测试用数字证书 (3)Azure IoT Edge Transparent Gateway D2C 演示demo     本文演示: 配置了透明网关的Downstream Device 透过 顶层Edge设备发送遥测消息。 本文的网络结构参考下图: 在Azure上新建了一台Ubuntu Server 并配置为 Edge Device;     配置过程主要有: 在Azure 上建立了一台Windows 10 并配置为Downstream Device; 配置Downstream Device Wind10的 NSG,禁用 internet 出站流量; 配置Downstream Device 和Edge …

Azure IOT Video IoT Hub IoT Edge

Azure IoT Edge Transparent Gateway 透明网关-测试CA证书准备

本系列文章:  (1)Azure IoT Edge Transparent Gateway 概念 (2)Azure IoT Edge Transparent Gateway 准备测试用数字证书 (3)Azure IoT Edge Transparent Gateway D2C 演示demo       本文介绍: Azure IoT Edge Transparent Gateway 透明网关模式下,如何配置测试用的数字证书; 主要用到如下三个证书相关文件: 可参照官网链接生成文件:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-create-test-certificates?view=iotedge-2020-11&WT.mc_id=AZ-MVP-5003757 具体的生成步骤,可参照文档或者视频自行操作: 根 CA 证书 …

Azure IOT Video IoT Hub IoT Edge

Azure IoT Edge Transparent Gateway 透明网关概念

本系列文章:  (1)Azure IoT Edge Transparent Gateway 概念 (2)Azure IoT Edge Transparent Gateway 准备测试用数字证书 (3)Azure IoT Edge Transparent Gateway D2C 演示demo   本文介绍 Azure IoT Edge Transparent Gateway 透明网关模式: 主要参考如下官网链接: 配置透明网关:https://docs.microsoft.com/zh-cn/azure/iot-edge/how-to-create-transparent-gateway?view=iotedge-2020-11&WT.mc_id=AZ-MVP-5003757 对下游设备进行身份验证:https://docs.microsoft.com/zh-cn/azure/iot- …

Azure IOT Video IoT Hub IoT Edge