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 2881cab8a5e4b9aee17f3fc0dc4643caafd07b42 Author: Pavel Tupitsyn <[email protected]> AuthorDate: Fri Jun 27 15:55:29 2025 +0300 Propagate transaction --- .../dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs index 40fc50561bb..d85955ff17b 100644 --- a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs +++ b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs @@ -68,6 +68,7 @@ public class IgniteCommand : DbCommand // TODO: Remove debug output. Console.WriteLine($"IgniteCommand.ExecuteNonQueryAsync [statement={statement}, parameters={string.Join(", ", args)}]"); + // TODO: DDL does not support transactions, but DML does, we should determine this based on the command type. await using IResultSet<object> resultSet = await GetSql().ExecuteAsync<object>( transaction: null, // DDL does not support transactions. statement,
