I am developing an app in Aurelia which has a .net core backend. I have already implemented user Authentication with Auth0 in the frontend. The problem comes as I am not sure if its good practice to implement a way so that users from auth0 database are linked with my user model in .net core and in my database. When a user registers/logs in I can get the corresponding user model from my database. Basically I would be using the auth0 database jsut for logging in and my database for the user details. If it is good practice how should I go around and doing it? Is a 'post user registration' action good? Any help appreciated :)