Почему бы не сопоставить свойства, которые вы хотите, и оставить те, которые не нужно отображать
чек это
Вы можете управлять сохранением ConventionModelMapper следующим образом:
mapper.BeforeMapProperty += (mi, propertyPath, map) =>
{
// Your code here using mi, propertyPath, and map to decide if you want to skip the property .. can check for property name and entity name if you want to ignore it
};
Лучший ответ будет:
mapper.IsPersistentProperty((mi, declared) =>
{
if (mi.DeclaringType == typeof (YourType) && mi.Name == "PropertyNameToIgnore")
return false;
return true;
});