Value was either too large or too small for an Int32

Hello,
in the production, I see this log error:

ServiceStack.OrmLite.OrmLiteUtils[0]
Value was either too large or too small for an Int32.
System.OverflowException: Value was either too large or too small for an Int32.
at System.Decimal.ToInt32(Decimal d)
at System.Decimal.System.IConvertible.ToInt32(IFormatProvider provider)
at ServiceStack.OrmLite.OrmLiteConverterExtensions.ConvertNumber(IOrmLiteDialectProvider dialectProvider, Type toIntegerType, Object value) in /home/runner/work/ServiceStack/ServiceStack/ServiceStack.OrmLite/src/ServiceStack.OrmLite/IOrmLiteConverter.cs:line 152
at ServiceStack.OrmLite.OrmLiteWriteCommandExtensions.PopulateObjectWithSqlReader[T](IOrmLiteDialectProvider dialectProvider, Object objWithProperties, IDataReader reader, Tuple`3 indexCache, Object values) in /home/runner/work/ServiceStack/ServiceStack/ServiceStack.OrmLite/src/ServiceStack.OrmLite/OrmLiteWriteCommandExtensions.cs:line 369

can you advise how to find the cause of this in my services?
I’m using ServiceStack version 6.3.0 on .net6.0 with the Postgresql database.

The Exception says it’s failing trying to convert a large value into a signed int, what value are you trying to convert?

I am not sure from which service that exception is comming. Application is running as a service on Ubuntu and I can see that in linux journal-ctl.
Maybe I should include nlog to track this better.