diff --git a/Data.cs b/Data.cs index 2a53d68..af1ca8b 100644 --- a/Data.cs +++ b/Data.cs @@ -230,7 +230,7 @@ private async Task> ParseReaderRow(DbDataReader reader) result[i] = null; else if (type == typeof(byte[]) || type == typeof(char[])) result[i] = Convert.ToBase64String((byte[])result[i]); - else if (type == typeof(Guid) || type == typeof(DateTime)) + else if (type == typeof(Guid)) result[i] = result[i].ToString(); else if (type == typeof(IDataReader)) result[i] = "";