diff --git a/entity-framework/core/saving/transactions.md b/entity-framework/core/saving/transactions.md index 9906eab232..67e7ee9710 100644 --- a/entity-framework/core/saving/transactions.md +++ b/entity-framework/core/saving/transactions.md @@ -26,6 +26,9 @@ You can use the `DbContext.Database` API to begin, commit, and rollback transact While all relational database providers support transactions, other providers types may throw or no-op when transaction APIs are called. +> [!NOTE] +> Manually controlling transactions in this way is incompatible with implicitly invoked retrying execution strategies. See [Connection Resiliency](xref:core/miscellaneous/connection-resiliency#execution-strategies-and-transactions) for more information. + ## Savepoints > [!NOTE]