I recently encountered an issue while trying to debug a Blazor client project. Googling any Blazor debugging issues returns lots of results, all of them related to breakpoints not being hit. However, my problem was that despite hitting breakpoints, no variable values etc. could be examined. So debugging did nothing beyond pausing execution.
Month: February 2021
JSON schema generation from sample data in Azure Data Factory
While trying to write mapping within a Copy shape in Azure Data Factory, I hit a stumbling block with generated JSON schemas. The problem occurs when you generate a schema containing an array, and the first instance of that array happens to be empty in your sample data.
Linq to SQL in Entity Framework Core 3
The Problem If you’ve had the privilege of updating EF Core from version 2.x, you’ve no doubt enjoyed all kinds of Linq to SQL errors and null reference exceptions. There’s a big change in 3.x that’s behind this. In older versions, when your Linq to SQL couldn’t successfully be translated to SQL at run time,… Continue reading Linq to SQL in Entity Framework Core 3