Weekly digest: the best articles, once a week, no spam.

Latest articles

SQL Server

How to Pivot Data in SQL Server

Rotate rows into columns with PIVOT, the CASE alternative for multiple aggregates, dynamic pivots with STRING_AGG and sp_executesql, and UNPIVOT (plus CROSS APPLY VALUES) for the reverse.

ASP.NET MVC ASP.NET Core

Using Fluent API in EF Core Code First

EF Core Fluent API configuration in OnModelCreating — tables, columns, keys, indexes, relationships, query filters, value conversions, and when to prefer it over DataAnnotations.

ASP.NET MVC ASP.NET Core

Entity Framework Core Database-First Tutorial

Scaffold a DbContext and entities from an existing SQL Server database with dotnet ef dbcontext scaffold — what gets generated, re-scaffolding on schema changes, and extending via partial classes.

ASP.NET Core ASP.NET MVC

Testing ASP.NET Core Web API using Postman

Test ASP.NET Core Web API endpoints with Postman — GET, POST, PUT, and DELETE requests, JSON bodies, the status codes to expect, and practical tips like collections and environment variables.