Hi @Reid Archibald Thanks for sharing the screenshot, I am attaching the sample code which is working for AAD connection.
I have added the connection string to your code and I hope you are using the correct dependency
Here is the connection string
string ConnectionString = @"Server=****.database.windows.net; Authentication=Active Directory Default; Database=mytestdb1;";
using (SqlConnection conn = new SqlConnection(ConnectionString))
{
conn.Open();
}
Document for reference
Sample code192368-program.txt
Please let me know if the information is helpful.
Regards
Geetha