Skip to main content

How to Create a Microsoft Foundry Resource and Deploy a Model (Step-by-Step)

· 19 min read
Jagdish Kumawat
Founder @ Dewiride

If you are about to create an Azure OpenAI resource, stop. Microsoft's own guidance is that most use cases should use a Foundry resource instead — it speaks every Azure OpenAI API you already use, and adds the rest of the model catalog, agents and tools on top. This guide creates one from scratch and deploys a model.

Join Two Entities in .NET Core Using Lambda and Entity Framework Core

· 11 min read
Jagdish Kumawat
Founder @ Dewiride

Entity Framework Core maps each database table to an entity class and gives you a DbContext to query them. Most of the time you read from a single DbSet, but sooner or later you need data that lives across two tables — exactly what a SQL JOIN gives you. In EF Core, the lambda-based Join() method does the same job, and it translates into real SQL that runs on the database server.

Everything below targets .NET 10 and EF Core 10, the current Long Term Support releases.

How to Read from appsettings.json in ASP.NET Core (C#)

· 9 min read
Jagdish Kumawat
Founder @ Dewiride

appsettings.json is where an ASP.NET Core app keeps its settings — connection strings, API base URLs, feature flags, timeouts. Reading those values comes down to one service, IConfiguration, which ASP.NET Core registers for you. In a console app you build the same thing yourself in a few lines.

This guide covers both, on .NET 10.

Convert Number or Integer to Text or String using Power Automate (Microsoft Flow)

· 8 min read
Jagdish Kumawat
Founder @ Dewiride

Power Automate is strict about data types. If you try to concatenate a number into a message, save it into a text column, or pass it to a connector that expects text, the flow fails with a type mismatch. The fix is the built-in string() expression, which converts a number or integer into its text or string representation.

SSH Permission Denied (Publickey) on GitHub: Complete Troubleshooting Guide

· 8 min read
Jagdish Kumawat
Founder @ Dewiride

Seeing Permission denied (publickey) when connecting to GitHub means GitHub could not authenticate your SSH connection with any key your computer offered. The usual causes are an unloaded key, an incorrect remote URL, a key attached to another GitHub account, or an SSH configuration problem.

This guide checks each cause in the fastest order so you can get git clone, git pull, and git push working again.

Stay Updated

Subscribe to our newsletter for the latest tutorials, tech insights, and developer news.

By subscribing, you agree to our privacy policy. Unsubscribe at any time.