I want to ask a question regarding asp.net identity and integrating custom tables. I understand that using asp.net identity system for user login and registration and other actions that relates to user membership and account management issues is easier and faster. If for example i want to build a blog and as it is known that in a blog users have to register and also a user is associated with many posts and many comments. with the default identity system, i dont know how i can include other tables i have in the database to the existing tables that has to deal with membership so that i can have one edmx diagram that maps all relationships between the identity tables and other tables in the blog. To make it more clearer ive started with my own custom implementation of a membership system which has served me well so far, but i noticed i'm missing a lot by not using the default identity system of asp.net. Lets say i have these tables below
In instances where i mention userId, AuthorId are the same and only refers to the id of the user in the Users table (if there is anything like that in asp.net identity). I
How can i have something like this and instead of my own dbo.Userprofile, i want that of the asp.net identity and then generate a model from this. I hope my question makes sense.