Details
-
Bug
-
Resolution: Won't Fix
-
Major - P3
-
None
-
None
-
None
-
None
-
Windows
Description
Consider this mapping of a subclass that has a property that I want ignored:
mapping.DefaultProfile(profile =>
);
mapping.Map<MyConcrete>(c =>
);
The MyProperty of MyConcrete (which is a subclass of MyAbstract) doesn´t get ignored until I add this:
mapping.Map<MyAbstract>(f =>
);
This is works for my case but I can foresee cases where I would want one concrete class to ignore this property of the abstract while I would want to include it in another.