I have a table in my SQL Server database which stores the users who have access to my application. Now, I want to move these users to an AD group.
One option is to create a hangfire job and move these users to AD group using LDAP queries. However, there are very less instances of new users being added.
Is there any way of moving a newly created user to AD group through SQL only? I'm trying to find a way of not using the hangfire job. Is this even possible?