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 5772b2c040a398c3abf2adfa64caac4d5adc3a04
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Fri Jul 11 14:37:14 2025 +0300

    Fix IgniteTestStore
---
 .../TestUtilities/IgniteTestStore.cs                                 | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/TestUtilities/IgniteTestStore.cs
 
b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/TestUtilities/IgniteTestStore.cs
index c1c16e39657..59c6ec8130a 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/TestUtilities/IgniteTestStore.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/TestUtilities/IgniteTestStore.cs
@@ -15,15 +15,20 @@
 
 namespace Apache.Ignite.EntityFrameworkCore.FunctionalTests.TestUtilities;
 
+using System.Diagnostics.CodeAnalysis;
+using DataCommon;
 using Extensions;
 using Microsoft.EntityFrameworkCore;
 using Microsoft.EntityFrameworkCore.TestUtilities;
 
 public class IgniteTestStore : RelationalTestStore
 {
+    [SuppressMessage("ReSharper", "VirtualMemberCallInConstructor", 
Justification = "Reviewed.")]
     public IgniteTestStore(string name, bool shared)
         : base(name, shared)
     {
+        ConnectionString = GetIgniteEndpoint();
+        Connection = new IgniteConnection(ConnectionString);
     }
 
     public override DbContextOptionsBuilder 
AddProviderOptions(DbContextOptionsBuilder builder) =>

Reply via email to