-
Notifications
You must be signed in to change notification settings - Fork 0
Description
If structure has AutoAssign primary key the following code does not produce expected result
entity entry{ .pk = 10, .message = "hello"};
dm.Create(entrty);
// entry.pk is not 10the work around is following
entity entry{ .message = "hello"};
entry.pk = 10; // This will mark it as modified
dm.Create(entrty);
// entry.pk is 10Metadata
Metadata
Assignees
Labels
No labels