SQL Server Azure “Login failed for User”
问题 I am using the following code to perform SQL commands to my azure DB. The I do two calls inside my ASP.NET MVC action method. One to delete from Table A, and the second call to delete from Table B. using (System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection(ConnectionString)) { using (System.Data.SqlClient.SqlCommand command = conn.CreateCommand()) { conn.Open(); command.CommandText = statement; command.ExecuteNonQuery(); } } For whatever reason when I make the