Mid EF Core How does EF Core handle transactions? EF Core automatically wraps SaveChanges() calls in a transaction.Ensures all changes are committed atomically.For multiple SaveChanges() calls, transactions need manual handling.