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
They aren't functionally much different. AutoMapper can implicitly map without a mapping definition. If the object types are different, but have the same names it can also clone from one to another. Essentially, this is cloning an object's contents (private fields, properties, collections etc). AnyClone utilizes reflection to copy an object's contents recursively including some hairy details that are needed to clone more complex structures and it's fairly efficient.
Performance wise, it's about the same as AutoMapper. Similarly I have another package called AnySerializer which instead of copying using reflection it serializes the data to a byte structure (similar to Protobuf) but does so without any decorative attributes and can handle a wide range of complex objects.
It is merely a question rather than a bug or issue.
Is AnyClone preferred over AutoMapper.Map<T, T>() method ? Without being too specific.
And being a little more; do you actually handle anytihing special around properties like ;
The text was updated successfully, but these errors were encountered: