Mapster
Mapster copied to clipboard
A fast, fun and stimulating object to object Mapper
When mapping to an Input application crashes with no info when doing a multilevel mapping on EF Classes `[SupplyParameterFromForm] public InputModel Input { get; set; } = new();` ``` public...
Base on topic from discussion #786 and Issue #468
While rewriting some code to use the async implementation of adapt using package _Mapster.Async v2.0.1_, I stubled upon an issue where not all expected source properties were copied to the...
I can understand from #254 that mapping list with `AddRange` and such was previously supported. Currently protobuf generates `repeated` without a setter, your expected to either use the constructor, `Add`...
When converting between two class, both of which have a property named `MyProperty` with different types (one is string and the other is int), I have configured `RequireExplicitMapping = true`....
Alternative to #777, less impactful, keeps `InvokerModel` intact. Try combining parts if no property or field was found for a single part to allow for mapping properties that contain periods....
Very basic change to allow for mapping to a dictionary, where the key contains a period. Without this change, `config.NewConfig().Map("Key.With.Periods", c => c.Id);` would map to key `"Key"` instead of...