How can I create new properties using the UserIdentity that comes by default when creating an MVC 5 application?
Also, is it interesting to put information that does not pertain directly to authentication and authorization in the UserIdentity class?
On my system, in addition to the user profile information, it will have a shopping cart, an address list, and a move. Should this information be in the same UserIdentity?
I am using EntityFramework CodeFirst with DataAnnotations.