Is there a way I can attach a handler to OrmLite in the event that any SQL Exception happens? For logging purposes.
Similar to how ServiceExceptionHandlers
works.
Is there a way I can attach a handler to OrmLite in the event that any SQL Exception happens? For logging purposes.
Similar to how ServiceExceptionHandlers
works.
The Global Exception Handler for OrmLite is at:
OrmLiteConfig.ExceptionFilter = (dbCmd,ex) => …;