Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed Jun 20, 2024
1 parent d7b5cd9 commit a1e7251
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static FieldType FieldTypeToNative(object fieldType)
FieldType.BigInteger => Convert.ToInt64(value),
FieldType.SmallInteger => Convert.ToInt16(value),
FieldType.Double => Convert.ToDouble(value),
FieldType.Date => GetValue(value.ToString(), s => DateTime.Parse(s , null)),
FieldType.Date => GetValue(value.ToString(), s => DateTime.Parse(s, null)),
FieldType.DateOnly => GetValue(value.ToString(), s => DateOnly.Parse(s, null)),
FieldType.TimeOnly => GetValue(value.ToString(), s => TimeOnly.Parse(s, null)),
_ => value,
Expand Down

0 comments on commit a1e7251

Please sign in to comment.