-
Deprecated Classes
-
Deprecated MethodsMethodDescriptionUse
Table.find(Entity.Id)instead.UseTable.find(Entity.Id, Supplier)instead.For testing purposes only. Will only reliably work for tables that were created or inspected using calls toRepository.schema(Class).
-
Deprecated ConstructorsConstructorDescriptionuse create method insteaduse create method insteadLow-level constructor, kept for compatibility with existing code. Not recommended.
Table.modifyIfPresent()instead, unless you have specific requirements.Blind updates disrupt query merging mechanism, so you typically won't able to run multiple blind update statements in the same transaction, or interleave them with upserts (
Table.save()) and inserts.Blind updates also do not update projections because they do not load the entity before performing the update; this can cause projections to be inconsistent with the main entity.