Details
-
Bug
-
Resolution: Done
-
Major - P3
-
None
-
0.5
-
None
-
None
-
All
Description
A public property with a private setter will throw. E.g::
public IList<EventSession> Sessions
{ get; private set; }Error is occurring inBsonPropertyMapper.cs line 226 because call to propertyInfo.GetSetmethod() is throwing.
public override Action<object, object> Setter {
get {
if (setter == null)
return setter;
}
}