I have a simple entity whose PK is a Sequential Guid. The Database creates the PK.
When I save a new'd entity and ask the adapter to refetchAfterSave the SQL it generates is "Select blah from blah where PK is null" so of course does not refetch.
How can I get the entity I just new'd and saved when the PK is a DB generated Sequential Guid?
Ian