Anton Ryabchikov

Results 6 comments of Anton Ryabchikov

now it's hard to do it, it's better to wait when the transition to the incremental source generator is done #57

![Image](https://github.com/DedAnton/NextGenMapper/assets/36799941/da55cf30-2061-440f-89ac-ca972a77f7e9) ```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...

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...