Get Connection Strings and Keys via az cli

When using Azure Functions, the local.settings.json file is usually not checked into the repository by having the default .gitignore file added. This comes quite unhandy when you need to work with several repositories and thus, I’ve collected some commands that do almost all the work required. Getting started First, make sure to have the Azure…

Real key-based CosmosDB Pagination with .NET Core

Recently I had to implement a pagination mechanism for usage with Azure CosmosDB and Azure Functions on .NET Core 3.1.After stumbling upon several issues like f.e.: Partition key ranges were not taken into respect Pagination links were hard to setup URL Encoding continuation tokens Parsing URL query parameters into SqlQuerySpec I’ve published following repository on…