You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into an issue while using the SqlBuilder with an InnerJoin that messed me up for a bit.
The interface for InnerJoin has the order of parameters as string table, string onTable, string onColumn, string toTable, string toColumn, string schema, string alias = null, string toAlias = null.
The implementation of the interface for InnerJoin has the order of parameters as string table, string onTable, string onColumn, string toTable, string schema, string toColumn, string alias = null, string toAlias = null.
The shema and toColumn parameters are swapped.
The text was updated successfully, but these errors were encountered:
I ran into an issue while using the SqlBuilder with an InnerJoin that messed me up for a bit.
The interface for InnerJoin has the order of parameters as
string table, string onTable, string onColumn, string toTable, string toColumn, string schema, string alias = null, string toAlias = null
.The implementation of the interface for InnerJoin has the order of parameters as
string table, string onTable, string onColumn, string toTable, string schema, string toColumn, string alias = null, string toAlias = null
.The
shema
andtoColumn
parameters are swapped.The text was updated successfully, but these errors were encountered: