Skip to content

Commit

Permalink
Query: Default null propagation strategy for UDFs to false
Browse files Browse the repository at this point in the history
  • Loading branch information
smitpatel committed Feb 7, 2020
1 parent 3a91c13 commit c829663
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public virtual SqlExpression Translate(
dbFunction.Name,
arguments,
nullResultAllowed: true,
argumentsPropagateNullability: arguments.Select(a => true).ToList(),
argumentsPropagateNullability: arguments.Select(a => false).ToList(),
method.ReturnType);
}

Expand Down

0 comments on commit c829663

Please sign in to comment.