I have a question about how to execute query immediately.
I noticed that the queries will not be executed until all codes inside @on and @after are passed through.
more specifically, if I run Select.from query inside @on, it will retrieve data immediately without problem, but if I update/insert entity, the influence on Database will be shown up only after @after.
It looks like there is a message queue mechanism?
Is there anyway to run update/insert query immediately?