ASP.NET Core Identity Series – Getting Started
ASP.NET Core Identity is Microsoft’s membership system widely known to .NET developers for managing application users. And by managing we mean everything that has to do with a user account such as...
View ArticleASP.NET Core Identity Series – Integrating Entity Framework
Microsoft.Extensions.Identity.Core is the minimum ASP.NET Core Identity package you need to install in order to get start working with the core functionality of the library. We have seen how to do this...
View ArticleASP.NET Core Identity Series – Deep dive in Authorization
Authorization in ASP.NET Core is the process that determines whether a user can or cannot access a specific resource. It’s not part of the ASP.NET Core Identity library but can be tightly connected to...
View ArticleGetting started with Azure Service Fabric
In case you are planning to build the new Facebook or Twitter you probably need to adopt a Microservice architecture that allows you to easily scale up to thousands of machines (Scalability) and be...
View ArticleInstant page rendering and seamless navigation for SPAs
Single Page Applications SPAs nowadays are probably the latest trend when building web applications and this comes for two reasons: a) they offer a smoothless user experience with no page reloads and...
View ArticleBuilding serverless apps with Azure Functions
As the cloud evolves over the years, application architectures also adapt to changes resulting to new, modern and more flexible patterns of how we build applications today. One of the hottest patterns...
View ArticleAzure Functions Proxies in Action
Azure Functions Proxies is serverless API toolkit that basically allows you to modify the requests and responses of your APIs. This feature might sounds a little bit simple but it’s not. With AF...
View ArticleASP.NET Core Identity Series – OAuth 2.0, OpenID Connect & IdentityServer
As the web evolved over the years it proved that the traditional security options and mechanics such as client-server authentication, had several limitations and couldn’t cover (at least properly) the...
View ArticleASP.NET Core Identity Series – External provider authentication &...
There is no doubt that external provider authentication is a must have feature in new modern applications and makes sense because users are able to easily register new accounts and also login using...
View ArticleASP.NET Core Identity Series – Two Factor Authentication
Two-Factor Authentication is an additional security layer used to address the vulnerabilities of a standard password-only approach. All popular websites such as Facebook, Twitter, LinkedIn or DropBox...
View Article