Skip to content

Commit

Permalink
Fixed issue with NULL values being inserted into identity columns for…
Browse files Browse the repository at this point in the history
… MSSQL
  • Loading branch information
ryanalbrecht committed Jun 11, 2024
1 parent cab3727 commit 9822182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/BaseEntity.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ component accessors="true" {
var parent = variables._wirebox.getInstance( parentDefinition.meta.fullName );
}

parent.fill( getMemento(), true ).save();
parent.fill( retrieveAttributesData(), true ).save();

assignAttributesData( {
"#parentDefinition.key#" : parent.keyValues()[ 1 ],
Expand Down

0 comments on commit 9822182

Please sign in to comment.