Replies: 1 comment
-
Renamed to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've been using AutoMapper since 7.x and I must say it's been integrated so smootlhy.
I recently tried to migrate from
10.x
to11.x
and the only thing that stood out so far isIExpresssionBuilder
that seems to be missing.Is there a reason behind removing this interface ?
I've been using the
IExpressionBuilder.GetMapExpression<TSource, TDest>()
extension method quite a lot and would like to know if there is a replacement for this in the11.x
version of the package ? This method has helped me in so many projects where I was able to dynamically retrieve the expression used to mapTSource
toTDest
(outside of anyIQueryable<T>
stuff) and use that expression however I wanted.I have a small class demonstrating the purpose of this here
Thank you in advance !
Beta Was this translation helpful? Give feedback.
All reactions