Muthu
Muthu

Reputation: 2685

Does Npgsql support community version of postgres?

I read from the enterprise db website that only the Postgres standard server and advanced server support Npgsql.

But am not sure if 1. Npgsql will not work with community version at all ?? or 2. It is just that it is not packaged along with community version,but I can use npgsql to connect and work with postgresql from .Net

Can someone help me understand?

Upvotes: 0

Views: 422

Answers (1)

Frank Heikens
Frank Heikens

Reputation: 127297

I read from the enterprise db website that only the Postgres standard server and advanced server support Npgsql.

EnterpriseDB is not the same as PostgreSQL. PostgreSQL is PostgreSQL, it's not a "community version" from EnterpriseDB. EnterpriseDB Server is a fork of PostgreSQL, not the other way around.

And yes, Npgsql does work with PostgreSQL, it was created for PostgreSQL:

Npgsql is a .Net Data Provider for Postgresql. It allows any program developed for .Net framework to access database server. It is implemented in 100% C# code. Works with Postgresql 7.x and above.

Upvotes: 3

Related Questions