Strings also should be allowed to respect allownull
This commit is contained in:
@@ -13969,7 +13969,7 @@ namespace DynamORM
|
|||||||
|
|
||||||
Column = attr;
|
Column = attr;
|
||||||
|
|
||||||
if (attr != null && attr.AllowNull && !Type.IsNullableType())
|
if (attr != null && attr.AllowNull && !Type.IsNullableType() && Type != typeof(string))
|
||||||
attr.AllowNull = false;
|
attr.AllowNull = false;
|
||||||
|
|
||||||
if (property.CanRead)
|
if (property.CanRead)
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ namespace DynamORM.Mapper
|
|||||||
|
|
||||||
Column = attr;
|
Column = attr;
|
||||||
|
|
||||||
if (attr != null && attr.AllowNull && !Type.IsNullableType())
|
if (attr != null && attr.AllowNull && !Type.IsNullableType() && Type != typeof(string))
|
||||||
attr.AllowNull = false;
|
attr.AllowNull = false;
|
||||||
|
|
||||||
if (property.CanRead)
|
if (property.CanRead)
|
||||||
|
|||||||
Reference in New Issue
Block a user