So I have a Entity Framework Core first database and a .Net Core application.
I want to add Seed Data to it when creating the database. I know the FluentAPI has the HasData method but that is not what i am looking for.
When the database gets created I want to create a user with a random generated password (that is different every time) that will be saved on a file in the server.
I can't use the HasData method because then it will create the same password everytime.
So my question is: Is there a way, other than the HasData method, to add Seed data to a Entity Framework Core Code First database