in EF1, i couldn't just update an object that was constructed (with the right id) outside the scope of the ObjectContext.
Is there a new way in EF4?
Can i just add it to the context (context.AddOrder(order))
(where context is an instance of my ObjectContext) and 'it' sees that it has an id and updates it?
It's non-poco so my objects derive from EntityObject