Thanks to this excellent post, I was able to customize the set of OAuth2 tables for user security.
Now I need to implement DML triggers to these customized tables, such as when a user is created, updated or deleted. What I need to do is to update and manipulate certain values in these tables, and ideally through database scripts and not in VS code.
Under SSMS/IIS10, is it possible to do so? The triggers I defined are current not invoked when a user is created through the web API.
Thank you in advance for any suggestions.
Edited to add: The triggers I have in mind are INSTEAD OF INSERT, INSTEAD OF UPDATE etc.