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
Keep BaseMapper for coders who are expanding the library, but provide developers a way to inherit mapping functionality and specialize it through code.
As in:
publicclassCustomerMVMMapper:Mapper<Customer,CustomerMVVM){
public CustomerMVMMapper(){// this guy should inherit from composite mapper and upon this constructor call already have all the mapper stack ready.AddMapping(/* magic mapping here */);}}
The text was updated successfully, but these errors were encountered:
Keep BaseMapper for coders who are expanding the library, but provide developers a way to inherit mapping functionality and specialize it through code.
As in:
The text was updated successfully, but these errors were encountered: