Details
-
Improvement
-
Resolution: Done
-
Major - P3
-
None
-
1.9.2
-
None
-
N/A
-
Fully Compatible
Description
BsonSerializationInfoFinder VisitMethodCall doesn't address the method GetValue case.
I'm currently developing dynamic linq, where I leverage the GetValue to build a method then create an expression with it. Suggested update to the VisitMethodCall,
protected override BsonSerializationInfo VisitMethodCall(MethodCallExpression node)
{
switch (node.Method.Name)
return null;
}
It works like a champ now.
Thanks,
Dama