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