Skip to content

Commit b14f0b1

Browse files
committed
.Net 8
1 parent 757c262 commit b14f0b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/EntityFrameworkCore.SqlServer.SimpleBulks/TableInfor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public string CreateSetClause(string prop, Func<SetClauseContext, string> config
104104

105105
public IReadOnlyCollection<string> FlattenProperties(IReadOnlyCollection<string> propertyNames)
106106
{
107-
if (propertyNames.Count == 0)
107+
if (propertyNames == null || propertyNames.Count == 0)
108108
{
109109
return propertyNames;
110110
}

0 commit comments

Comments
 (0)