Link Search Menu Expand Document

Releases for RepoDb.EnterpriseDb


View the NuGet package here or download it directly here.

RepoDb.EnterpriseDb (v0.0.1-alpha) - Preview

Released: TBA

New

First (alpha) release of the EnterpriseDB provider for RepoDB, built on top of the Npgsql-backed RepoDb.Connector.EnterpriseDb connector for EDB Postgres Advanced Server. Targets .NET 8 and .NET 10.

What’s included

Known limitations (v1)

  • InsertAll does not append a RETURNING clause (EDB Postgres rejects RETURNING against a sub-table VALUES expression) — generated identities are only returned via Insert or the bulk operations in RepoDb.EnterpriseDb.BulkOperations.
  • No table hints of any kind — AreTableHintsSupported is false; passing a non-null hints argument throws a NotSupportedException.
  • The [ConvertedValue] attribute is obsolete — no longer supported by RepoDb.Connector.EnterpriseDb.
  • No CLR representation exists for PostgreSQL geometric types (box, circle, line, lseg, path, point, polygon), pg_lsn, tid, or text-search types (tsquery, tsvector) on the Npgsql-backed connector this provider is built on — columns of these types resolve to object and have no matching EDBType.
  • Only EDB Postgres Advanced Server is targeted; behavior against community PostgreSQL is not a design goal of this provider (use RepoDb.PostgreSql for that).