Open
Description
Is there an easy way to change how null propagation works?
- If we wanted to throw an exception when null reference encountered? There are lots of various
Ignore
methods, similarly I wish there wereRequired
methods or maybe anThrowIfNull
argument to be passed in - If null encountered, use a provided value (I know atm it uses default or null value)
Activity
DocSvartz commentedon Jan 5, 2025
Hello @brgrz
Do you want to prevent null leaking from Source to Destination?
From this case:
Maybe it will help you Mapping with condition