You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and NoteDto and NoteDao contains DocumentDto and DocumentDao objects to be mapped, INotesMapper can use already defined mappings for DocumentDto by injecting IDocumentsMapper mapper into INotesMapper.
To do this, define
[Mapper(UseMappers=newstring[]{nameof(IDocumentsMapper),"AnotherMapper"}]
public interface INotesMapper
or
[Mapper(UseMapper=nameof(IDocumentsMapper)]
public interface INotesMapper
Add, for example
UseMapper
property to MapperAttribute to use defined mappings from another mappers classesThe text was updated successfully, but these errors were encountered: