Skip to content

Commit 8f0f0ab

Browse files
committed
Fix: EntityTypeBuilderExtensions in AddConverterForScalarProperties should not return when finding a primitive collection but continue with next property
1 parent 7f9d933 commit 8f0f0ab

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>9.3.0</VersionPrefix>
5+
<VersionPrefix>9.3.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
@@ -462,7 +462,7 @@ private static void AddConverterForScalarProperties(
462462
if (property.IsPrimitiveCollection)
463463
{
464464
AddConverterForPrimitiveCollections(property, useConstructorForRead, configure);
465-
return;
465+
continue;
466466
}
467467
#endif
468468

0 commit comments

Comments
 (0)