Our SL screen will allow the user to create new Owner entities. The owner entity has an identity column for it's primary key in the database. We also capture the time the entity was instantiated by the entity manager (e.g. when the class was created, not saved to the db). We save all additions/modification using "SaveChangesAsync."
Occasionally, we will get records in the database that show the records are not saved in the order they were created. For example:
Owner 1 (created first):
ID: 1001
Instantiated: 10:02 AM
Owner 2 (created second):
ID: 1000
Instantiated: 10:05 AM
SaveChangesAsync was called after each owner was created.
Why would Owner 1 not be saved to the db until after Owner 2, 3 minutes later?