Hello there, how are you today?
So, here we go: Is there any way (without us changing flags, DBValue's, etc. manually) to save an entity and continue to use it?
Here's is the scenario:
- Client creates 'EntityA'
- 'EntityA' ID is created client side (let's say a GUID) so no need to fetch anything at server side is necessary.
- A remoting call to save 'EntityA' is made
- Client continue to use same 'EntityA' reference it had before the remoting call.
Actually, point number 4 will not work (ORMEntityOutOfSyncException), so again is there a way to avoid this behavior or are you planning to support it later?
And passing the entity back is out of the question: Serializing/marshalling a big object graph and sending it through the wire is a time consuming task!
If there's no way, ok we will do it; I just want to avoid reinventing the wheel if someone has already invented it
Thank you very much.