I'm trying to get the GUID of new account created but there is no values in the SaveChangesResultCollection:
Account account = new Account(); Account.name = "test"; DbContext.Create(account); SaveChangesResultCollection results = DbContext.SaveChanges();How do I get the GUID for the newly created record?