Example #1
0
 internal HstoreHandler(PostgresType postgresType, NpgsqlConnector connector)
 {
     PostgresType = postgresType;
     _textHandler = new TextHandler(postgresType, connector);
 }
Example #2
0
 internal HstoreHandler(PostgresType postgresType, TextHandler textHandler)
     : base(postgresType)
     => _textHandler = textHandler;
Example #3
0
 /// <inheritdoc />
 protected internal JsonPathHandler(PostgresType postgresType, NpgsqlConnector connector)
 {
     PostgresType = postgresType;
     _textHandler = new TextHandler(postgresType, connector);
 }