I almost feel silly asking such a simple question but I have an ASP.NET Core application that I am trying to configure the email sender upon user registration correctly.
I have registered my email and it didn't work and so in order to test again I need to drop my user data from the database because currently my email I used already is registered but never sent me an email to confirm so I can't log in anyway. All I need to do is drop the data from the scaffolded ASP.NET Core identity users
table but anytime I try to target the table using SSMS it just tells me either the table doesn't exist (even though I can pull up the table and see my email and data) or gives me an "incorrect syntax near identity" message.
So there it is - can you edit the scaffolded identity tables from ASP.NET Core using a SQL command?