I faced a huge problem with ASP.NET
project performance which is using Npgsql
. It does execute every query to database using single connection/database process what makes project unusable by more than 1 person simultaneously (database connection locking).
When I play with pgAdmin
or Dbeaver
PostgreSQL
creates another process which executes my queries.
My connection string:
Host=localhost;Username=user;Password=pass;Database=database_name;Pooling=true;