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:
Родитель
05ec892648
Коммит
1e46fa0e42
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Двоичные данные
Hands-on lab/Lab-files/Modern Cloud Apps Student Files.zip
Двоичные данные
Hands-on lab/Lab-files/Modern Cloud Apps Student Files.zip
Двоичный файл не отображается.
Загрузка…
Ссылка в новой задаче