Added .Wait() call to Admin Startup.cs

This enhances the reliability of the call to ProductDatabaseInitializer.Configure() method as brought up in Issue #47
This commit is contained in:
Chris Pietschmann 2020-01-31 13:50:44 -05:00
Родитель 05ec892648
Коммит 1e46fa0e42
3 изменённых файлов: 4 добавлений и 1 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -286,3 +286,6 @@ __pycache__/
*.btm.cs
*.odx.cs
*.xsd.cs
Hands-on lab/.DS_Store
Hands-on lab/Lab-files/.DS_Store
.DS_Store

Просмотреть файл

@ -63,7 +63,7 @@ namespace Contoso.Apps.SportsLeague.Admin
using (var serviceScope = app.ApplicationServices.CreateScope())
{
var dbContext = serviceScope.ServiceProvider.GetService<ProductContext>();
ProductDatabaseInitializer.Configure(dbContext);
ProductDatabaseInitializer.Configure(dbContext).Wait();
}
}
}

Двоичный файл не отображается.