Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ScaffoldingReadMe.txt 505B

123456789101112
  1. Scaffolding has generated all the files and added the required dependencies.
  2. However the Application's Startup code may require additional changes for things to work end to end.
  3. Add the following code to the Configure method in your Application's Startup class if not already done:
  4. app.UseEndpoints(endpoints =>
  5. {
  6. endpoints.MapControllerRoute(
  7. name : "areas",
  8. pattern : "{area:exists}/{controller=Home}/{action=Index}/{id?}"
  9. );
  10. });