Skip to content

Commit c829663

Browse files
committed
Query: Default null propagation strategy for UDFs to false
1 parent 3a91c13 commit c829663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EFCore.Relational/Query/RelationalMethodCallTranslatorProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public virtual SqlExpression Translate(
5858
dbFunction.Name,
5959
arguments,
6060
nullResultAllowed: true,
61-
argumentsPropagateNullability: arguments.Select(a => true).ToList(),
61+
argumentsPropagateNullability: arguments.Select(a => false).ToList(),
6262
method.ReturnType);
6363
}
6464

0 commit comments

Comments
 (0)