Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

What's best practice for migration to ASP.NET Core Edition? #208

Answered by adrianhall
myokeeh asked this question in Q&A
Discussion options

You must be logged in to vote

It's a rewrite from scratch. The changes are significant enough you will want to re-do all your controllers.

Firstly, let's talk authentication. We switched over the ASP.NET Core Identity instead of relying on Azure App Service Authentication. This means that you have to rip out what you were doing and replace it with ASP.NET Core Identity. I included a simple way to get Azure App Service Authentication back by integrating it into the ASP.NET Core Identity framework.

Secondly, the controllers are different. You now have to provide an access control provider, which is an interface that consists of three methods - one to limit what a user can see, one to authorization a user, and one to pro…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@myokeeh
Comment options

Answer selected by adrianhall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants