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
|`org.mybatis.dynamic.sql.BasicColumn`| Use this interface if you want to add capabilities to a SELECT list or a GROUP BYexpression. For example, using a database function. |
17
-
|`org.mybatis.dynamic.sql.BindableColumn`| Use this interface if you want to add capabilities to a WHERE clause. For example, creating a custom condition.|
|`org.mybatis.dynamic.sql.BasicColumn`| Use this interface if you want to add capabilities to a SELECT list, a GROUP BY, or an ORDER BY expression. For example, using a database function.|
17
+
|`org.mybatis.dynamic.sql.BindableColumn`| Use this interface if you want to add capabilities to a WHERE clause in addition to the capabilities of `BasicColumn`. For example, creating a custom condition. |
18
18
19
19
Rendering is the process of generating an appropriate SQL fragment to implement the function or calculated column.
20
20
The library will call a method `render(RenderingContext)` in your implementation. This method should return an
@@ -101,14 +101,15 @@ the function changes the data type from `byte[]` to `String`.
0 commit comments