#csharp
Read more stories on Hashnode
Articles with this tag
OpenTelemetry is the software industry standard for logging so I wrote a sample Web Job that logs, traces and emits metrics using open...
To copy content folder in .csproj to output folder, add the following. <ItemGroup> <Content Include="$(ProjectDir)Content\**"...
Suppose there are two async function GetX and GetY, then the code to get them to run in parallel and wait is. var tx = GetX(); var ty = GetY(); var...
Here is a trick I learned today on how to call methods defined on a model. Basically query the database for the fields in it and convert it to an...
Here is a sample code that shows how to check and create a Folder if needed. Process unread and incoming emails and categorize them into...
The quickest way to delete is using a stored procedure. I prefer stored procedures in a database project over dynamic SQL because renames will be...