LF
LF
I have a Domain and Dto layer in my solution which both have the following classes (DomBase, DomDerived, DomPayment & DerivedDomPayment in domain layer): ```C# public class DtoBase { public...
I have the following classes and patterns that Mapster can't work with. Specifically the pattern for overwriting the DerivedPayment in each of the derived classes. When debugging it shows that...
Suppose we have two interfaces which are identical except that one has a field the other does not. ```C# public interface Interface1 { public string Inter { get; set; }...
I am in the process of refactoring a project from automapper to mapster. I have run into an issue with mapping configs for generic classes e.g. ```C# CreateMap(typeof(derivedDto), typeof(derivedDomain)) .IncludeBase(typeof(baseDto),...