You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#3152 allowed calling NpgsqlDataReader.GetStream on any data type; this allows e.g. getting a raw string representation for decoding outside of Npgsql, for efficient JSON decoding.
We could allow the same for NpgsqlDataReader.GetFieldValue<byte[]> and NpgsqlDataReader.GetBytes(), which could be useful in certain short value scenarios. We should probably wait to see if someone cares first.
#3152 allowed calling NpgsqlDataReader.GetStream on any data type; this allows e.g. getting a raw string representation for decoding outside of Npgsql, for efficient JSON decoding.
We could allow the same for
NpgsqlDataReader.GetFieldValue<byte[]>andNpgsqlDataReader.GetBytes(), which could be useful in certain short value scenarios. We should probably wait to see if someone cares first.