A database operation failed while processing the request.

SqliteException: SQLite Error 13: 'database or disk is full'.


There are pending model changes for ApplicationDbContext

In Visual Studio, use the Package Manager Console to scaffold a new migration for these changes and apply them to the database:

PM> Add-Migration [migration name]
PM> Update-Database

Alternatively, you can scaffold a new migration and apply it from a command prompt at your project directory:

> dotnet ef migrations add [migration name]
> dotnet ef database update