Have the sudden urge to change the namespace in a project but uncertain how this is going to impact my EF core models ...
Ah found a good way to test this out. Can use `dotnet ef migrations sql -o data.sql` as a way of diffing my before / after SQL. This seems like a good way to validate the rename had no SQL impact
This seems to have worked. Verified that a simple namespace change, plus changing up the string literals in the migration files, produced no diff to the full migrations script.