I expected SaveAsync(forceUpdate: true) to always hit the Data Portal #3241
-
If we call I've probably misunderstood what this should do, but I was expecting obj.MarkDirty(); // Can't do this as it's protected
obj = obj.SaveAsync(); What's the proper way to force a save on an object which is not dirty, given |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
maybe
I did something similar but with Delete. I had to set the IsDelete flag to true so that I can run my business rules.
|
Beta Was this translation helpful? Give feedback.
-
If memory serves, forceupdate is for Web stateless applications when we want to run the 'UPDATE' operation in Database, instead of 'INSERT'. |
Beta Was this translation helpful? Give feedback.
-
So I should just add my own |
Beta Was this translation helpful? Give feedback.
If memory serves, forceupdate is for Web stateless applications when we want to run the 'UPDATE' operation in Database, instead of 'INSERT'.