Using Domain / Username

Colleagues

When using AD authentication, can we use domain/usename instead of username@domain.net to log into web app?

Hi @neo,

This isn't supported but you can easily try implementing it:

  1. Add server\Authentication\ApplicationUserManager.cs file to Radzen's code generation ignore list.
  2. Update the FindByNameAsync method to remove the domain name:

userName = userName.Replace($"{this.Domain}\\", "");

Worked perfectly....