Continuous database deployments to Azure Sql Server with Bitbucket
This post is about configuring continuous database deployments to Azure Sql Server with Bitbucket. We are deploying it using EF Core migrations. We can can modify the existing bit...
View ArticleUsing Docker environment variables at JavaScript runtime
When creating a container for a single-page application with JavaScript frameworks like Angular, React, or Vue.js, we may have to inject certain configuration variables based the deployment...
View ArticleHow to use native AOT to improve performance of ASP.NET Core apps
This post is about explains what native AOT is and why it is beneficial for ASP.NET Core apps. Native AOT is a deployment model that uses an ahead-of-time compiler to compile IL to native code at the...
View ArticleWorking with dotnet8 projects in Visual Studio 2022
Recently Microsoft released .NET 8.0 RC. And when we try to load a .NET 8 Web API project in Visual Studio - we will get a message like this. - The current Visual Studio version does not support...
View ArticleCreate a web API with ASP.NET Core and MongoDB
This post is about configuring Mongo DB and creating ASP.NET Core Web API to work with Mongo DB using MongoDB.EntityFrameworkCore nuget package. Recently MongoDB team announced a EF Core provider for...
View ArticleCreating Microsoft Teams Applications with Visual Studio and .NET
This post is about creating Microsoft Teams applications with Visual Studio and .NET. For creating Microsoft Teams applications, I am using the Teams Toolkit - which will make teams apps development...
View ArticleIntegrate OpenAI API in ASP.NET Core
This post is about integrating Open AI API in ASP.NET Core. We can integrate Open AI using REST API and using Open AI SDK.Configuring Open AI in Azure PortalFirst we need to create an Azure Open AI...
View ArticleBuilding Sql Server Database projects with dotnet CLI
This post is about creating sql server database using dotnet CLI.Install SqlPackageFirst we need to install the dotnet tool SqlPackage. We can do it by the command - dotnet tool install -g...
View ArticleGetting started with .NET Aspire
This post is about installing dotnet aspire. The .NET Aspire is an opinionated, cloud ready stack for building observable, production ready, distributed apps. .NET Aspire is delivered through a...
View ArticleHow to use identity to secure a Web API backend for single page apps
This post is about how to use Identity to secure a Web API backend for SPAs such as Angular, React, and Vue apps. Unlike ASP.NET Core MVC, Web API projects doesn’t support the --auth Individual option...
View Article