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 7bf1595 + 77de282 commit a1f8e3fCopy full SHA for a1f8e3f
QueryBuilder/SqlResult.cs
@@ -81,7 +81,7 @@ private string ChangeToSqlValue(object value)
81
}
82
83
// fallback to string
84
- return "'" + value.ToString() + "'";
+ return "'" + value.ToString().Replace("'","''") + "'";
85
86
87
0 commit comments