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 8f05a1c4f69fe6aa28b1d5ce4e8910f7714b2ab1 Author: Pavel Tupitsyn <[email protected]> AuthorDate: Fri Jul 11 17:02:24 2025 +0300 wip --- .../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 0a419bf46bc..d6844883c19 100644 --- a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs +++ b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore/DataCommon/IgniteCommand.cs @@ -69,6 +69,7 @@ public class IgniteCommand : DbCommand 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. + // TODO: Use ExecuteBatch for multiple statements. await using IResultSet<object> resultSet = await GetSql().ExecuteAsync<object>( transaction: null, // DDL does not support transactions. statement,
