I'm using Mapster 5.3.1 with DI in EF Core 3.1 ... and I have a question.. is there a way to ignore all null values in source member during mapping when both members are IEnumerable and both have identical structure.
var tSource = (IEnumerable) var tDestination = (IEnumerable)
_mapper.Map(tSource, tDestination)
If tSource have a null value I don't want to that value in tDestination.
I hope you guys can help me.
thanks