Commit 6f7078a7 authored by Tim Stone's avatar Tim Stone

Added trailing space to JOIN prefix to prevent JOIN<table> error in RawSql

parent 76b930a4
......@@ -571,7 +571,7 @@ public SqlBuilder AddParameters(dynamic parameters)
public SqlBuilder Join(string sql, dynamic parameters = null)
{
AddClause("join", sql, parameters, joiner: "\nJOIN ", prefix: "\nJOIN", postfix: "\n");
AddClause("join", sql, parameters, joiner: "\nJOIN ", prefix: "\nJOIN ", postfix: "\n");
return this;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment