public static Double GetDoubleOrDefault(this READER reader, int ordinal) => reader.IsDBNull(ordinal) ? default : reader.GetDouble(ordinal);