Tim M
Tim M
> (IQueryable projection mappings pick up configurations in the same mapper for types which need to be mapped by the IQueryable projection mapping). Does Mapperly do this? I know `IQueryable`...
Thanks for raising the issue. tbh I thought editor config applied to generated code as well 🤔 As you suggested I can disable the warning in each generated file, which...
Just realised that the nullable initializer is required. Even if the source is known to not be null the targets setter could make the property null (very unlikely). Instead the...
Good point, no idea why I didn't think of that 😆
IMO this is pretty confusing. You might have a functioning mapping, but by adjusting a child it stops working. Do automapper/mapster do this?
👍 think I have the fix already made, see if I can find it
How should it be used for other mappings? ie should it map `Document.Settings.Locale` -> `DocumentDto.SettingsLocale`
Should it support nested members? Something like: ```C# [Mapper] partial class Mapper { [MapNestedProperties("Settings.Region"))] public partial DocumentDto Map(Document doc); // instead of: [MapProperty("Settings.Locale", "Locale")] [MapProperty("Settings.CurrencySymbol", "CurrencySymbol")] public partial DocumentDto Map(Document...
Checkout #598, looks like they tried to add this feature but never completed it
Hey @trejjam, thanks for writing the benchmarks! For what it's worth the number vary a lot when performing microbenchmarks, how many times have you run this? The change between runs...