Configuring and Setting up Middleware Azure Functions and Modules
Explore how to configure middleware Azure Functions and incorporate essential PowerShell modules such as SimplySql, Authorization Manager, and Queue Manager. Understand setting up triggers, bindings, and managing automation accounts to enhance Azure event-driven architectures.
We'll cover the following...
We'll cover the following...
Adding third-party modules
The SimplySql is a third-party Powershell module that can be used to establish a connection to a MySql or a SqlServer Database. All modules inside the directory will be loaded when an application starts.
PowerShell
You can install modules using PowerShell with the Install-Module command. To install SimplySql, we use the following command:
Install-Module -Name SimplySql
Visual Studio Code
- You can download SimplySql from the repo here or from my Git repo.
- Add the downloaded source code to the directory as shown in the image below.
...