I am new to Asp.Net Core 6.0 Identity. I am planning to achieve the following.
- Make the default ID field of type int instead of GUID in the AspNetUsers table.
- I want to rename this field from ID to CompanyID.
- I want to rename the table name from AspNetUsers to CompanyUsers.
After several Google searches, I couldn’t find proper suggestions for all three of my requirements. I have already created the default AspNetUsers table with additional custom fields and it was working fine. Now the requirement changed and several thousand rows from a legacy table will be moved to this table, and that’s why I had to make these adjustments.