You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- Scaffolding has generated all the files and added the required dependencies.
-
- However the Application's Startup code may require additional changes for things to work end to end.
- Add the following code to the Configure method in your Application's Startup class if not already done:
-
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllerRoute(
- name : "areas",
- pattern : "{area:exists}/{controller=Home}/{action=Index}/{id?}"
- );
- });
|