, ?? - . IL, HasValue, GetValueOrDefault. , , Nullable , Value.
, GetValueOrDefault CodeMethodInvokeExpression, null-coallesing. 4 , , 0m .
new CodeMethodInvokeExpression(
new CodeMethodReferenceExpression(
new CodePropertyReferenceExpression(modelArgument, "Result"),
"GetValueOrDefault"),
new [] { new CodePrimitiveExpression(0m) }));
: GetValueOrDefault , HasValue. ( ?? . GetValueOrDefault). :
public T GetValueOrDefault(T defaultValue)
{
if (!this.HasValue)
return defaultValue;
else
return this.value;
}