Is no update was ignored in repository
This commit is contained in:
@@ -14553,7 +14553,7 @@ namespace DynamORM
|
|||||||
|
|
||||||
if (pm.Column != null)
|
if (pm.Column != null)
|
||||||
{
|
{
|
||||||
if (pm.Column.IsKey)
|
if (pm.Column.IsKey || pm.Column.IsNoUpdate)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!pm.Column.AllowNull && cf.Value == null)
|
if (!pm.Column.AllowNull && cf.Value == null)
|
||||||
|
|||||||
@@ -141,7 +141,7 @@ namespace DynamORM.Objects
|
|||||||
|
|
||||||
if (pm.Column != null)
|
if (pm.Column != null)
|
||||||
{
|
{
|
||||||
if (pm.Column.IsKey)
|
if (pm.Column.IsKey || pm.Column.IsNoUpdate)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!pm.Column.AllowNull && cf.Value == null)
|
if (!pm.Column.AllowNull && cf.Value == null)
|
||||||
|
|||||||
Reference in New Issue
Block a user