(Pinal Dave) Based on the current trend of moving to the cloud platform, there have been many new learnings for me. One of my clients migrated to SQL Azure Managed Instance and contacted me for an interesting situation.
Community
Policy-Based Authorization with Angular and ASP.NET Core using JWT
(Ankit Sharma) In this article, we will create a web application using ASP.NET Core and Angular. We will then implement authentication and policy-based authorization in the application with the help of JWT. The web application will have two roles – Admin and User.
A Bottom-Up View of Kotlin Coroutines
(Garth Gilmour and Eamonn Boyle) Coroutines are a fascinating subject, although hardly a new one. As has been documented elsewhere coroutines have been rediscovered many times over the years, typically when there is a need for some form of lightweight threading and/or a solution to ‘callback hell’.
Help! My restore has finished but the database still has a status of recovering.
(Kenneth Fisher) I’ve been thinking about writing this for a bit and then a co-worker actually had this problem recently, so, well, it seemed like a good idea.
Find Index Create Date
(Jason Brimhall) Have you ever been zipping right along working on tuning a query or maybe a handful of queries. Then BAM! All of a sudden you lose the script you were working on. The script just so happened to have a few indexes that you were getting ready to create and you would like to not have t
Hibernate 5 Naming Strategies
(Thorben Janssen) JPA and Hibernate provide a default mapping that maps each entity class to a database table with the same name.
Guru: Formatting Numbers and Dates/Times/Timestamps in SQL
(Paul Tuohy) In this article, I want to share with you an SQL scalar function that I happen to have been using quite a bit recently. At times, when using an SQL select statement, you may want to format a number or date.
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.