If you currently use the .NET-String-Replace in a Where-Clause you receive an error, because this call is translated to Replace("string1", "string2") in SQLite, which is the wrong syntax. This happens because the Replace function is not handled in CompileExpr.
I've added the condition to translate the Replace-Method with the correct call in SQLite.
If you currently use the .NET-String-Replace in a Where-Clause you receive an error, because this call is translated to Replace("string1", "string2") in SQLite, which is the wrong syntax. This happens because the Replace function is not handled in CompileExpr.
I've added the condition to translate the Replace-Method with the correct call in SQLite.