Skip to content

Commit f6c7449

Browse files
committed
Fix: EntityTypeBuilderExtensions in AddConverterForScalarProperties should not return when finding a primitive collection but continue with next property
1 parent 5f90613 commit f6c7449

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Copyright>(c) $([System.DateTime]::Now.Year), Pawel Gerr. All rights reserved.</Copyright>
5-
<VersionPrefix>8.10.0</VersionPrefix>
5+
<VersionPrefix>8.10.1</VersionPrefix>
66
<Authors>Pawel Gerr</Authors>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
88
<PackageProjectUrl>https://github.com/PawelGerr/Thinktecture.Runtime.Extensions</PackageProjectUrl>

src/Thinktecture.Runtime.Extensions.EntityFrameworkCore.Sources/Extensions/EntityTypeBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ private static void AddConverterForScalarProperties(
512512
if (property.IsPrimitiveCollection)
513513
{
514514
AddConverterForPrimitiveCollections(property, validateOnWrite, useConstructorForRead, converterLookup, configure);
515-
return;
515+
continue;
516516
}
517517
#endif
518518

0 commit comments

Comments
 (0)