Create user with same email ID in the solution base on AspNetIdentity

  • Updated

How to create one user who can register to multiple sites with same email ID. The default implementation in QuickSilver site is restricts this as it checks the uniqueness of the Email id of the user. 

In UserService.cs file of QuickSilver project, you can configure validation logic and set RequireUniqueEmail = false in the constructor method.

This is responsible for creating user actually checks the uniqueness of the Email id of the user.