Anton Ryabchikov
Anton Ryabchikov
what about Dictionary?
now it's hard to do it, it's better to wait when the transition to the incremental source generator is done #57
 ```c# [TestMethod] public Task InvocateOnElvisOperator_ShouldMap() { var source = @"#nullable enable using NextGenMapper; namespace Test; public class Program { public object? RunTest() { Source? source = new Source(); return...
This is theoretically possible, but will require significant changes to the code. I will add this task to the backlog, but I cannot say that this will be done in...
So far I haven't been able to find a way to fix this.
another one variant ``` var customer = new CustomerDto("", "", "", ""); phone.Map(ref customer); name.Map(ref customer); record SourcePhone(string PhoneNumber, string PhoneType); record SourceName(string FirstName, string LastName); record CustomerDto(string PhoneNumber, string...