(Ben Nadel) Yesterday, I ran into a really strange error when trying to increment a numeric value on an in-memory MongoDB document in Lucee CFML 5.2.9.31.
Tag: Development
Using Serilog.AspNetCore in ASP.NET Core 3.0 – Part 2
(Andrew Lock) In my previous post I described how to configure Serilog’s RequestLogging middleware to create “summary” logs for each request, to replace the 10 or more logs you get from ASP.NET Core by default.
Azure DevOps – YAML for CI-CD Pipelines
(Gouri Sohoni) Azure Pipelines is a service which provides CICD. In this tutorial, we will see how to get started with the creation of Azure Pipelines.We will fetch code from GitHub repository and create a build pipeline with yml followed by a release pipeline. We also discuss how customization can
Sharing Data and Splitting Components in Blazor
(Peter Vogel) The biggest change in ASP.NET Core Version 3.1 is that you can now pass data you’ve gathered in your server page to the Blazor component hosted in the page.
C# 8.0: Understanding Using Declarations
(Steve Gordon) In this post, I introduce a simple new language feature of C# 8 called using declarations.
ASP.NET Core IIS InProcess Hosting Issue in .NET Core 3.1
(Rick Strahl) I ran into a nasty issue yesterday related to hosting an ASP.NET Core 3.1 server application in IIS using the default InProcess hosting.
Using A Closure To Encapsulate Depth-First Tree Traversal In Lucee CFML 5.3.3.62
(Ben Nadel) In my last couple of Lucee CFML posts, I’ve looked at using a while loop to recursively iterate over a tree structure without creating a deep (and expensive) call-stack. I’ve done this using both a breadth-first algorithm and a depth-first algorithm.
Using nameof operator in C#
(Gunnar Peipman) There’s one very useful and often overlooked operator in C#. It’s called nameof and its purpose is to return name of something.
Generating a PDF Document Using C#, .NET, and iText 7
(Chandra Kudumula) This article is about generating PDF documents using C#, .NET, and the iText library.
How to Create a Machine Learning Decision Tree Classifier Using C#
(James McCaffrey) A decision tree classifier is a machine learning (ML) prediction system that generates rules such as “IF income < 28.0 AND education >= 14.0 THEN politicalParty = 2.”