Shay Rojansky

Results 2976 comments of Shay Rojansky

I'm not sure this is something we'll patch, so it'll probably only be out in the next version, which is probably months away (we just released 5.0).

@yanw-bq what's you reason for asking, how specifically are you expecting this work to impact you?

If this is just about referencing the obsolete NpgsqlDataReader.Statements, then I'd recommend simply suppressing the warning as we do in NpgsqlModificationCommandBatch - that's just how things are at the moment....

@yanw-bq the batching reader should indeed remove the cast to NpgsqlDataReader in that particular spot, but I can't say off the top of my mind whether there are others where...

@mhkolk nothing is being retrieved as an empty JSON string: Npgsql returns `DBNull.Value` to represent null values, as is standard in .NET database drivers. Now, if you visualize DBNull in...

I did look, but I can't reproduce `{}` appearing anywhere. Calling ToString() on DBNull returns an empty string, as clearly shown below: ```c# var dbnull = (DBNull)rowData["age"]!; var asString =...