Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ScaffoldingReadMe.txt 505B

pirms 1 gada
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. });