From d7d1c350a2735e4ffa7ea740040755eafcf006c0 Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Fri, 24 Apr 2020 17:42:24 +0200 Subject: [PATCH] Add missing XML docs --- .../Storage/Internal/SqlServerTransaction.cs | 6 ++++++ .../Storage/Internal/SqlServerTransactionFactory.cs | 6 ++++++ .../Storage/Internal/SqliteTransaction.cs | 6 ++++++ .../Storage/Internal/SqliteTransactionFactory.cs | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/src/EFCore.SqlServer/Storage/Internal/SqlServerTransaction.cs b/src/EFCore.SqlServer/Storage/Internal/SqlServerTransaction.cs index f8ac5860c68..543f6504123 100644 --- a/src/EFCore.SqlServer/Storage/Internal/SqlServerTransaction.cs +++ b/src/EFCore.SqlServer/Storage/Internal/SqlServerTransaction.cs @@ -11,6 +11,12 @@ namespace Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal { + /// + /// This is an internal API that supports the Entity Framework Core infrastructure and not subject to + /// the same compatibility standards as public APIs. It may be changed or removed without notice in + /// any release. You should only use it directly in your code with extreme caution and knowing that + /// doing so can result in application failures when updating to a new Entity Framework Core release. + /// public class SqlServerTransaction : RelationalTransaction, IDbContextTransaction { private readonly DbTransaction _dbTransaction; diff --git a/src/EFCore.SqlServer/Storage/Internal/SqlServerTransactionFactory.cs b/src/EFCore.SqlServer/Storage/Internal/SqlServerTransactionFactory.cs index d5fd9fda540..69522130196 100644 --- a/src/EFCore.SqlServer/Storage/Internal/SqlServerTransactionFactory.cs +++ b/src/EFCore.SqlServer/Storage/Internal/SqlServerTransactionFactory.cs @@ -8,6 +8,12 @@ namespace Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal { + /// + /// This is an internal API that supports the Entity Framework Core infrastructure and not subject to + /// the same compatibility standards as public APIs. It may be changed or removed without notice in + /// any release. You should only use it directly in your code with extreme caution and knowing that + /// doing so can result in application failures when updating to a new Entity Framework Core release. + /// public class SqlServerTransactionFactory : IRelationalTransactionFactory { /// diff --git a/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransaction.cs b/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransaction.cs index 817012ae393..292b0e5e6ea 100644 --- a/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransaction.cs +++ b/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransaction.cs @@ -11,6 +11,12 @@ namespace Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal { + /// + /// This is an internal API that supports the Entity Framework Core infrastructure and not subject to + /// the same compatibility standards as public APIs. It may be changed or removed without notice in + /// any release. You should only use it directly in your code with extreme caution and knowing that + /// doing so can result in application failures when updating to a new Entity Framework Core release. + /// public class SqliteTransaction : RelationalTransaction, IDbContextTransaction { private readonly DbTransaction _dbTransaction; diff --git a/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransactionFactory.cs b/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransactionFactory.cs index ca92dbed8d4..162e18ad67d 100644 --- a/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransactionFactory.cs +++ b/src/EFCore.Sqlite.Core/Storage/Internal/SqliteTransactionFactory.cs @@ -8,6 +8,12 @@ namespace Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal { + /// + /// This is an internal API that supports the Entity Framework Core infrastructure and not subject to + /// the same compatibility standards as public APIs. It may be changed or removed without notice in + /// any release. You should only use it directly in your code with extreme caution and knowing that + /// doing so can result in application failures when updating to a new Entity Framework Core release. + /// public class SqliteTransactionFactory : IRelationalTransactionFactory { ///