Connection Problems between the Entity Framework and the Database?

0

When I run my application I'm encountering the following error when loading data through Entity Framework .

When it runs I notice that the following connection string is called:

  

In it I notice that a different username and password is being loaded than I am informing%% (which are the ones that actually work for the connection to the bank).

Below the correct connection:

  

Web.config

I have already reviewed all my classes and I have not found where the information from the first image is being taken. I would like help with the question and if possible be able to pass the correct information to the application.

    
asked by anonymous 21.03.2017 / 15:30

1 answer

0

Verify that there are no two connection strings in your web.config file and check the context creation class if you are using the correct connection string.

    
21.03.2017 / 18:29