This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a commit to branch ignite-22133-bak
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit e6601be0e2a03b2c5cdec8f4e491f55657f428ad
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Fri Jun 27 15:54:25 2025 +0300

    Propagate transaction
---
 .../Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs
 
b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs
index 937393cb67b..40fc50561bb 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs
@@ -69,7 +69,7 @@ public class IgniteCommand : DbCommand
         Console.WriteLine($"IgniteCommand.ExecuteNonQueryAsync 
[statement={statement}, parameters={string.Join(", ", args)}]");
 
         await using IResultSet<object> resultSet = await 
GetSql().ExecuteAsync<object>(
-            transaction: GetTransaction(),
+            transaction: null, // DDL does not support transactions.
             statement,
             cancellationToken,
             args);

Reply via email to