In my application I have installed the default individual authentication flow. By default my AspNetRoles
is empty. I could easily add some roles using INSERT SCRIPTS, but I'm quite sure that is not how you are supposed to do that.
What is the best practice here? Is it to add them using the Seed
method in the Context file, and if so, how do you do it?
I've seen an article such as this: MVC 5 Seed Users and Roles , but as far as i can read, this assumes the roles are already made before.