[Solved] LDAP Server side sorting – really a good idea?

Server-side sorting is intended for use by clients that are unable or unwilling to sort results themselves; this might be useful in hand-held clients with limited memory and CPU mojo. The advantages of server-side sorting include, but not limited to: the server can enforce a time limit on the processing of the sorting clients can … Read more

[Solved] How does LDAP work in ASP.NET Boilerplate? [closed]

LDAP/Active Directory LdapAuthenticationSource is an implementation of external authentication to make users login with their LDAP (active directory) user name and password. If we want to use LDAP authentication, we first add Abp.Zero.Ldap nuget package to our project (generally to Core (domain) project). Then we should extend LdapAuthenticationSource for our application as shown below: public … Read more