コード例 #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
ファイル: JsonPathHandler.cs プロジェクト: TonicAI/npgsql
 /// <inheritdoc />
 protected internal JsonPathHandler(PostgresType postgresType, NpgsqlConnector connector)
 {
     PostgresType = postgresType;
     _textHandler = new TextHandler(postgresType, connector);
 }