The usage of these statements is not clear for me. I give the following example
if (!BsonClassMap.IsClassMapRegistered(typeof(Province)))
{
BsonClassMap.RegisterClassMap<Province>(cm =>
{
cm.AutoMap();
cm.SetIdMember(
cm.GetMemberMap(c =>
c.ProvinceId).SetIdGenerator(UniqueIdGenerator.Instance));
cm.UnmapProperty(c => c.CountryId);
cm.UnmapProperty(c => c.EloqueraId);
cm.UnmapProperty(c => c.UpdateMode);
});
}
The last 2 properties have no private fields, but the first (CountryId) has. I have a feeling like, when using the UnmapProperty, the private field is not ignored and I should better use UnmapMember???
Can please someone explain more in depth how to handle these statements? Or give me a hint where to find it? Thank you