In my .Net MAUI project I'm trying to change update my migration. I added a property to my model and did;
- Add-Migration AddBlogCreatedTimestamp in the packet manager console
- Update-Database in the packet manager console
It tells me 'build succeeded' but also give me the error "Startup project targets platform 'Android'. The Entity Framework Core .NET Command-line Tools don't support this platform"
When I try to run the app on my android phone I get: Microsoft.Data.Sqlite.SqliteException: 'SQLite Error 1: 'no such column: t.Description'.' Description being the property I added to the model.
When I run the app on windows it works fine.
Is there anyway around this? I read the page that comes with the error but that didn't help me.