The User entity represents a user of the application. It should be derived from the AbpUser class .
The AbpUser class defines some base properties like :
- UserName: Login name of the user. Should be unique for a tenant.
- EmailAddress: Email address of the user. Should be unique for a tenant.
- Password: Hashed password of the user.
- IsActive: True, if this user can login to the application.
- Name and Surname of the user.
AbpUser class also contains properties like Roles, Permissions, Tenant, Settings, IsEmailConfirmed etc. Check the AbpUser class for more information.
Last modified:
May 28, 2019
Post your comment on this topic.