As I understand you should use @Modifying
whenever you write for example update query with @Query
annotation, but I've seen many times people don't use that annotation when using R2dbcRepository
or CoroutineCrudRepository
, so should I use this annotation using reactive stack or no?
Is there a case that I don't have to use @Modifying
if I don't really use entity manager and don't use @Entity
?