Last post Sep 29, 2020 09:53 AM by XuDong Peng
None
0 Points
1 Post
Sep 27, 2020 04:36 AM|sahinsancak|LINK
1)Will identity tables and project tables be in the same database? Examle : ASPNETUser(all) and other table Product,order,company etc..2)Would it be right for us to move Identity tables to Data Access in layered architecture?3)Can we change the identity tables table names? Examle: ASPNETUser ------>change Users4)Are identity tables relations with other tables? Example: user ---> PlayerTable(fk UserId)
Contributor
2110 Points
675 Posts
Sep 29, 2020 09:53 AM|XuDong Peng|LINK
Hi sahinsancak,
sahinsancak 1)Will identity tables and project tables be in the same database? Examle : ASPNETUser(all) and other table Product,order,company etc..
This will depend on your code. If you modify the applicationdbcontext, it will be in the same database.
sahinsancak 2)Would it be right for us to move Identity tables to Data Access in layered architecture?
Yes. For example: All-in-one applications.
sahinsancak 3)Can we change the identity tables table names? Examle: ASPNETUser ------>change Users
Yes, you could also refer to ASP.NET Core Identity Tables Customization With Visual Studio 2017.
sahinsancak 4)Are identity tables relations with other tables? Example: user ---> PlayerTable(fk UserId)
Identity tables will have some foreign keys. I recommend you to refer to the relevant official documents for more details.
Identity model customization in ASP.NET Core
Best regards,
Xudong Peng
None
0 Points
1 Post
Identity EFramework 3X
Sep 27, 2020 04:36 AM|sahinsancak|LINK
Contributor
2110 Points
675 Posts
Re: Identity EFramework 3X
Sep 29, 2020 09:53 AM|XuDong Peng|LINK
Hi sahinsancak,
This will depend on your code. If you modify the applicationdbcontext, it will be in the same database.
Yes. For example: All-in-one applications.
Yes, you could also refer to ASP.NET Core Identity Tables Customization With Visual Studio 2017.
Identity tables will have some foreign keys. I recommend you to refer to the relevant official documents for more details.
Identity model customization in ASP.NET Core
Best regards,
Xudong Peng