I have a entity class that is populated from the backend and then automapper is used to map the data to a new DTO Model. I have other data coming in from another source that has some same data and new data that i want placed into the DTO. When i say same data, I mean, some properties of the new source should overwrite properties in the dto that already have data in them.
Is there a way to use automapper or some nice easy way to merge this data? or is the only way to do this by manual mapping?
Thanks