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.
1 parent f9dc447 commit 77de282Copy full SHA for 77de282
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