Is there any contraindication in mapping the class IdentityUser
manually?
It is recommended that you keep the code in Assembly separately as closely as possible to the original template web code. ASP.NET Identity is very responsive to customizations and is quite coupled with the Entity Framework, so in theory using the Fluent API is not a problem as you can get an equivalent result using another approach.
Just make sure nothing is missing while switching approaches.
Is it possible to perform this process normally or is there any particularity?
At first, there are no particularities. Just make sure to install this package and this also in the separate Assembly . There all dependencies are resolved for the proper functioning of ASP.NET Identity.
Another care is to not remove the original settings from your Web.config
. This is due to the fact that, even referencing the Assembly , the configuration will be based on the web project, not on a .config
file placed in Assembly .