How do you add a new foreign key property to existing data in EF Core?
Say you have some models, you create a new model which will have a foreign key to one of your existing models.
add-migration will fail because the existing records won't have the foreign key. What is the right approach to solving this?