1 write to ContextDetails
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (1)
Views\DatabaseErrorPageModel.cs (1)
18
ContextDetails
= contextDetails;
3 references to ContextDetails
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (3)
Views\DatabaseErrorPage.Designer.cs (3)
185
var contextWithNoDBOrMigrations = Model.
ContextDetails
.Where(c => !c.DatabaseExists && !c.PendingMigrations.Any());
286
var contextWithPendingMigrations = Model.
ContextDetails
.Where(c => c.PendingMigrations.Any()).Except(contextWithNoDBOrMigrations);
478
var contextWithPendingModelChanges = Model.
ContextDetails
.Where(c => c.PendingModelChanges).Except(contextWithNoDBOrMigrations).Except(contextWithPendingMigrations);