選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

WebAppExtension.cs 255B

12345678910
  1. namespace Diligent.WebAPI.Host.Extensions;
  2. public static class WebAppExtension
  3. {
  4. public static void SetupData(this WebApplication app)
  5. {
  6. IServiceScope serviceScope = app.Services.CreateScope();
  7. serviceScope.SetupData();
  8. }
  9. }