Hideki Sugimoto
Hideki Sugimoto
Hi.. Change the font by specifying Theme and Style, but how can I change the height of row? Thanks.
Currently it is called via `SF.`, but it is changed to a notation that is easier to write, for example` $ `. (Braking change) ex) ``` SF.isEmpty ()-> $ isEmpty...
- Add AbstractSqlFluent#paramIfNotEmpty method. - Add AbstractExtractionCondition#ifNotEmpty method. - StringUtils rename ObjectUtils - ObjectUtils#isEmpty/isNotEmpty is now available for types other than String
- Remove AbstractAgent (merge into SqlAgentImpl) - Refactoring LocalTransactionContext - Add event api - remove AutoParameterBinder, SqlFilter (integrated into event api) Now work in progress.
I would like to be able to get information on uroborosql SQL issuance in **micrometer.** https://micrometer.io/
Continued from #108. I'd like to see the comments show up here. 
現在uroborosqlで提供されているINメソッドは以下のようなAPIを提供している。 ```java agent().query(Product.class) .in("productId", List.of(1, 2)) .collect(); ``` しかし、このAPIでは、複数カラムに対するIN句には対応できていないため、新たに複数カラムのIN句に対応するAPIを追加したい。 発行するSQLは以下のようになる ```sql select (productテーブルのカラム) from product t where (t.product_id, t.product_name) in ((1, '商品1'), (2, '商品2')) ``` これに対応するAPIは ```java var inParamBeans =...