Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have an asp.net mvc 5 application with individual user account security extended with user roles and centralized user administration (users can't create accounts, only application administrator, i.e. me, create accounts and assign roles to them).

My user class looks something like this:

ASP.NET
public class ApplicationUser : IdentityUser
{

// User name, full name, e-mail etc....

}

and it's stored in "AspNetUsers" table provided by identity...

Now i need to expand this by adding CompanyID property to a ApplicationUser class and new table with company informations (already existing in database)...

Can someone point me where to find informations how to do this?

What I have tried:

everything is working fine now but i need to put the user data into the aspnetuser table , but in my case i have registration table where my users are placed . so how i can use my own user table to join with roles table of identity rather than user their aspnetuser table
Posted
Updated 15-Feb-24 2:37am
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900