Getting pending operations #906
-
I was wondering if it was possible to get a list of all the pending operations? I know you can do client.PendingOperations to get the number operation pending. But it would be good to know which item are pending. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That's kind of hard, since you aren't attached to a specific table at that point (normally, you'd want to know what items are dirty so you can put an icon next to the item, for example). You can use the ExecuteSql methods to query the operations queue, but it requires knowledge of the underlying structure of the database - which can change (but. reality, it doesn't change). |
Beta Was this translation helpful? Give feedback.
That's kind of hard, since you aren't attached to a specific table at that point (normally, you'd want to know what items are dirty so you can put an icon next to the item, for example). You can use the ExecuteSql methods to query the operations queue, but it requires knowledge of the underlying structure of the database - which can change (but. reality, it doesn't change).