We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8173d4f + 19ca24c commit a80a0c9Copy full SHA for a80a0c9
QueryBuilder/SqlResult.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.Collections;
3
using System.Collections.Generic;
4
+using System.Globalization;
5
using System.Linq;
6
7
namespace SqlKata
@@ -56,7 +57,7 @@ private string ChangeToSqlValue(object value)
56
57
58
if (NumberTypes.Contains(value.GetType()))
59
{
- return value.ToString();
60
+ return Convert.ToString(value, CultureInfo.InvariantCulture);
61
}
62
63
if (value is DateTime date)
0 commit comments