Method | Description | |
---|---|---|
VisitBinaryOperatorExpression ( |
We have to replace code such as: doc.FirstName ?? "" Into doc.FirstName != null ? doc.FirstName : "" Because we use DynamicNullObject instead of null, and that preserve the null coallasing semantics.
|
public VisitBinaryOperatorExpression ( |
||
binaryOperatorExpression | ||
data | object | |
return | object |