Kim JaeYeon

Results 15 comments of Kim JaeYeon

@ivamly Would it be okay if I worked on this issue?

Hello! I'm working on this issue and I have questions 1. I'm implementing function. It currently throws an exception ("Delete requires criteria to avoid full-table delete") if the query’s criteria...

So it means I only need to run a single DELETE query on table, and the related sub-entities will remain unaffected?

I feel like my question from two weeks ago was a bit lacking in detail. I'd like to ask a more thorough and well-structured question this time. I looked into...

Then I plan to proceed with the following steps. 1. SELECT id FROM root_table WHERE Query Criteria FOR UPDATE; 2. DELETE FROM sub_entity_table WHERE root_table_id IN (result from 1); 3....

hello i have question. according to example ``` private T triggerBeforeConvert(T aggregateRoot) { if (aggregateRoot instanceof BeforeConvertCallback) { // new return ((BeforeConvertCallback) aggregateRoot).onBeforeConvert(aggregateRoot); } eventDelegate.publishEvent(() -> new BeforeConvertEvent(aggregateRoot)); // previously...

hi ! if an entity directly implements a callback interface, it should also be included in the entityCallbacks?

hello. thank for quick response ! Ultimately, the design needs to satisfy these requirements: 1. Callback implemented in the entity class must be treated the same way as other callbacks...