Nullable ignored on AllowNull test

This commit is contained in:
2024-08-05 11:56:07 +02:00
parent 6de41e166e
commit 3921c176ce
2 changed files with 1408 additions and 1406 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -111,7 +111,7 @@ namespace DynamORM.Mapper
Column = attr;
if (attr != null && attr.AllowNull && Type.IsNullableType())
if (attr != null && attr.AllowNull && !Type.IsNullableType())
attr.AllowNull = false;
if (property.CanRead)