Is there any contraindication in performing the class mapping IdentityUser
manually?
The recommended is that you keep the code on Assembly separately as close as possible to the original code of template web. ASP.NET Identity is quite responsive to customizations and is quite attached to the Entity Framework, so in theory use Fluent API is no problem as you can get an equivalent result using another approach.
Just make sure nothing was missing when changing approach.
It is possible to perform this process normally or there is some particularity?
At first there are no particularities. Just make sure to install this package and this too in the Assembly separate. There are resolved all dependencies for the correct functioning of ASP.NET Identity.
Another precaution is not to 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, and not on a file .config
placed in the Assembly.