Explore advanced features, limitations, and performance insights.
You can define custom mappings manually:
config.CreateMap<int, long>(i => (long)i);CleanMapper uses expression trees to generate mappings at configuration time and compiles them to delegates for runtime performance without reflection.
- No automatic nested mapping (planned for v1.1.0)
- Does not support custom value resolvers yet