How do I add SQL Server's NOLOCK using JOOQ?  I know it is not the best 
practice, but it works in my situation. 

 return getCreate()

  .select()

  .from(CUSTOMER)

  .fetchInto(CustomerDto.class);


select * from customer with (NOLOCK )

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to