This will allow Mapster to set to all non-public members.
//type pair TypeAdapterConfig<Poco, Dto>.NewConfig().EnableNonPublicMembers(true); //global TypeAdapterConfig.GlobalSettings.Default.EnableNonPublicMembers(true);
You can also map non-public members with AdaptMember
attribute.
public class Product { [AdaptMember] private string HiddenId { get; set; } public string Name { get; set; } }
Map
command can map to private member by specify name of the members.
TypeAdapterConfig<TSource, TDestination> .NewConfig() .Map("PrivateDestName", "PrivateSrcName");
With IncludeMember
, you can select which access modifier to allow.
TypeAdapterConfig.GlobalSettings.Default .IncludeMember((member, side) => member.AccessModifier == AccessModifier.Internal || member.AccessModifier == AccessModifier.ProtectedInternal);Note for non-public member mapping
If type doesn't contain public properties, Mapster will treat type as primitive, you must also declare type pair to ensure Mapster will apply non-public member mapping.
TypeAdapterConfig.GlobalSettings.Default.EnableNonPublicMembers(true); TypeAdapterConfig<PrivatePoco, PrivateDto>.NewConfig();
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4