Dynamics 365 Finance and operations - Architecture

Dynamics 365 Finance and operations - Architecture

Dynamics 365 for Finance and Operations is designed and architected for the cloud. It can be deployed as an on-premises system or on the cloud.

March 26, 2021 · (updated February 2, 2024) · 3 min · Pradeep Loganathan
Off the blocks with the new Cosmos Db SDK-V4

Off the blocks with the new Cosmos Db SDK - V4

Creating Cosmos Db Infrastructure The azure Cosmos DB team provides SQL API SDK’s for various languages. At the time of writing this post the NuGet package for .NET core is at version 4 preview 3. The GitHub repo for this NuGet package is here . To get started we can use the Cosmo Db emulator locally or create a Cosmos Account on Azure. We can log onto Azure portal to create a Cosmos Account or use Azure CLI. I am using the below Azure CLI command to create a Cosmos DB account. This command creates a Cosmos DB Account named eCommerceDb-AC in the eCommerce-RG resource group. ...

November 2, 2020 · (updated December 27, 2024) · 7 min · Pradeep Loganathan
High performance Data modelling in Azure Cosmos Db

High performance Data modelling in Azure Cosmos Db

It is imperative to understand core concepts involved in modelling data in Cosmos Db to harness its power. It is an extremely powerful cloud native database.

October 30, 2020 · (updated February 2, 2024) · 10 min · Pradeep Loganathan
Getting started with Cosmos DB

Getting started with Cosmos DB

Cosmos DB is a cloud native database engine on Azure. It is a born-in the-cloud database with no legacy compatibility requirements. It can expose data using a variety of models and API’s.

October 21, 2020 · (updated February 5, 2024) · 4 min · Pradeep Loganathan

Getting started with terraform on azure - Part 1

Sunshine coast .Net user group meeting. Topic - Getting started with terraform on Azure.

October 11, 2020 · (updated December 27, 2024) · 1 min · Pradeep Loganathan

Getting started with terraform on azure - Part 2

Sunshine coast .Net user group meeting. Topic - Getting started with terraform on Azure.

October 11, 2020 · (updated December 27, 2024) · 1 min · Pradeep Loganathan
Terraform - getting started

Terraform - Getting Started

Terraform is an open source tool created by HashiCorp to define infrastructure as cod using a simple, declarative language called HCL. Terraform is used to deploy and manage infrastructure across a variety of cloud providers & virtualization platforms. It can be used to deploy infrastructure to all major cloud providers such as Azure, AWS, Digital ocean, and virtualization platforms such as VMware, Open stack, and others.

October 11, 2020 · (updated December 21, 2024) · 15 min · Pradeep Loganathan
Repository and Unit of work pattern in ASP.net core

Repository and Unit of work pattern in ASP.net core

A Repository is used to manage aggregate persistence and retrieval. The repository mediates between the data-access layer and the domain.The unit of work pattern keeps track of all changes to aggregates. Once all updates of the aggregates in a scope are completed, the tracked changes are played onto the database in a transaction

July 30, 2020 · (updated December 27, 2024) · 12 min · Pradeep Loganathan
Securing the  OAS/Swagger endpoint in dotnet using swashbuckle

Securing the OAS/Swagger endpoint in dotnet

OpenAPI 3.0 lets you describe how your APIs are protected using various security schemes and their security requirements.

June 25, 2020 · (updated December 27, 2024) · 4 min · Pradeep Loganathan
Building a successful API - Understanding the Open api specification (OAS)

Building a successful API - Understanding the Open API Specification (OAS)

The Open API Specification is used to define the contract between the API consumers and the API providers. The specification is based on the JSON schema and is a standard format for describing the data exchanged between the API consumers and the API providers.

June 20, 2020 · (updated December 27, 2024) · 11 min · Pradeep Loganathan