Entity Disconnected...Introduction...A DbContext instance automatically tracks entities returned from the database, and any changes made to these entities are detected when SaveChanges is called, and the database is also updated as needed....Sometimes entities are queried using one context instance and then saved using a different instance....In this case, the second context instance needs to know whether the entities are new (should be inserted) or existing (should be updated)....Identify New o...