Sometimes you just need a really simple login system for an application; something as simple as a single fixed username and password. Obvioulsy this wouldn't be great for a fully featured application, but it could get a prototype project up-and-running fast without needing to create a full SQL Server database fo...
When ASP.NET Core was released back in June 2016, we could not find a file manager for the TinyMCE web editing tool which we use in all our Content Management Systems (even as of January 2018 we cannot find one). We normally use the excellent Roxy Fileman file manager which supports ASP.NET but not ASP.NET Core...
This article continues on from our previous article which introduced Identity, how it changes a project and how to change the primary key type. This article explores how we extend ASP.NET Core 2 Identity to support multi-tenancy. What is Multi-Tenancy? Multi-tenancy (or multitenancy) is defined as "a...
ASP.NET Core Identity is described by Microsoft as "a membership system which allows you to add login functionality to your application"; it brings a huge amount of user account functionality to our web applications with almost no effort on the part of the developer. We are going to look at what happens when yo...
Today we have published the first two of our planned articles on ASP.NET Core:
An introduction to developing in ASP.NET Core
Learning ASP.NET Core
We hope these are useful to anybody wishing to learn or to migrate to development with ASP.NET Core.
There are many resources on the Internet which will help you learn ASP.NET Core - this article aims to offer some guidance on where to start with these based on our experience. Before we start listing resources, we thought it may help to introduce the concepts which gave us the most trouble; you don't need t...
On 27th June 2016 Microsoft released .NET Core (including ASP.NET Core and EnitityFramework.Core), described in their release as: "...a cross-platform, open source, and modular .NET platform for creating modern web apps, microservices, libraries and console applications... This is the biggest transformation o...