satish
satish

Reputation: 41

PostgreSQL connection error in .Net

i am getting below error while trying to connect my postgreSQL local database. Please help on this problem as i am new to this concept: Code and error details:enter image description here

Upvotes: 1

Views: 406

Answers (1)

Dmytro Bogatov
Dmytro Bogatov

Reputation: 786

From what I see, the inner exception (the one which caused the outer one) is saying that it cannot load assembly.

Try adding Microsoft.Extensions.Logging.Abstractions to you packages (in VS, click "add package" in menu on the right after right click).

Upvotes: 1

Related Questions