-
Type:
Bug
-
Resolution: Done
-
Priority:
Major - P3
-
None
-
Affects Version/s: 0.5
-
Component/s: None
-
None
-
Environment:All
-
None
-
None
-
None
-
None
-
None
-
None
-
None
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;
}
}