I would like to use a Controller based Identity with .NET Core 2.1. I would like to scaffold the UI but the scaffolder creates Razor Page based identity. I would like to use controllers instead of Razor Pages. Is it possible to scaffold this?
Asked
Active
Viewed 223 times
1
-
1For `Scaffold Identity`, it only provides `Razor Page`, if you prefer `AccountController`, you need to implement your own controller and view. – Edward Nov 20 '18 at 05:33
-
I found that creating a new project and choosing the.net core V2 as the .net version will create the controller based authentication vs the razor one. – gyurisc Nov 22 '18 at 09:33
1 Answers
0
I found that creating a new project and choosing the.net core V2 with authentication will create the controller based authentication vs the razor one.

gyurisc
- 11,234
- 16
- 68
- 102