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
Note that the table definition is not required unless you want to give an alias to the table in the
123
-
SQL. In that case, the table definition allows you to specify a table alias. The library will ignore
124
-
the alias for DELETE, INSERT, and UPDATE statements, but will honor the alias for SELECT statements.
125
-
126
122
### Second - Write XML or annotated mappers that will use the generated where clause
127
123
The library will create support classes that will be used as input to an annotated or XML mapper. These classes include the generated where clause, as well as a parameter set that will match the generated clause. Both are required by MyBatis3. It is intended that these objects be the one and only parameter to a MyBatis method.
128
124
@@ -199,11 +195,11 @@ For example, a very simple condition can be defined like this:
199
195
.render(RenderingStrategy.MYBATIS3);
200
196
```
201
197
202
-
Or this:
198
+
Or this (also note that you can give a table an alias):
0 commit comments