I want to pass my query from Business Layer to Service Layer but when doing this i have to convert my DTO to Entity model.
Normally i can convert Type1 to Type2 via Autommaper but now i want to map
Expression<Func<Type1,bool>>
to Expression<Func<Type2, bool>>
I got error from Automapper
Missing type map configuration or unsupported mapping.
Mapping types: Expression`1 -> Expression`1
How can i achieve this?