So if I have a store that needs a writer, and the table the data is taken from has multiple primary keys, what is the best method for implementing the store?
If I use one of the primary keys as the ID, if I delete something I wont have sufficient data when the writer sends it back to the backend. I could concat the primary keys as an ID and then splice them on the backend, but that is ugly. Is there a better solution to the issue?