Home
Options

Connect using Strong DM throws `Access Denied` on second query

Using strong DM to connect to my MySQL (aurora) database.

connection string is simply: Server=127.0.0.1;Port=<MyPort>;Database=<MyDatabase>;

Linq:

var test1 = TestDbSetOne.First();
var test2 = TestDbSetTwo.First();

First query executes and shows generated SQL, but the second query returns:

Access denied for user ''@'<IP>' (using password: NO)
Server Error Code 1045 
SqlState 28000 

Kinda stumped why I'd be hitting this failure in this way?

Sign In or Register to comment.