Is IdentityServer3.EntityFramework 2.5.0 compatible with Npgsql 2.2.5 ? I am running into connection string issue when using Npgsql where if I construct proper Npgsql connection string like -
provider=Npgsql;provider connection string="PORT=;TIMEOUT=15;POOLING=True;MINPOOLSIZE=1;MAXPOOLSIZE=20;COMMANDTIMEOUT=20;COMPATIBLE=2.2.5.0;DATABASE=;HOST=;USER ID=;PASSWORD="
Error like ArgumentException - keyword not supported 'provider' or if I just provide "PORT=... onwards then it complains "keyword not supported - 'port'".
If I provide sqllike connection string i.e
Database=;Server=:;Integrated Security=False; User Id=;Password=
Then it fails to connect to DB. What is the correct way to provide Npgsql connection string ? I tried multiple combinations Npgsql recommands but all are failing with IdentityServer3.EntityFramework. Other project using EntityFramework (v5, v 6.1.3) work fine with Npgsql connection string.
We need to dynamically create MS SQL or Npgsql/Postgres connection string to pass to EntityFrameworkServiceOptions depending on config. So pls recommand best option.
Thank you!
Is IdentityServer3.EntityFramework 2.5.0 compatible with Npgsql 2.2.5 ? I am running into connection string issue when using Npgsql where if I construct proper Npgsql connection string like -
If I provide sqllike connection string i.e
We need to dynamically create MS SQL or Npgsql/Postgres connection string to pass to EntityFrameworkServiceOptions depending on config. So pls recommand best option. Thank you!