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