Strings also should be allowed to respect allownull
This commit is contained in:
@@ -13968,8 +13968,8 @@ namespace DynamORM
|
|||||||
throw new InvalidOperationException("Enumerables of enumerables are not supported");
|
throw new InvalidOperationException("Enumerables of enumerables are not supported");
|
||||||
|
|
||||||
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