Email or username:

Password:

Forgot your password?
mrcopperbeard

TIL you can't use both dataSourceBuilder.MapComposite<T> and NpgsqlConnection.GlobalTypeMapper.MapComposite<T> at the same time in #npgsql
docs: npgsql.org/doc/types/enums_and

When you add mapping for composite type in GlobalTypeMapper - it replace datasource `UserTypeMapper` with global. Code here: github.com/npgsql/npgsql/blob/

1 comment
mrcopperbeard

Spent almost all day to figure this out

Go Up