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 4ab494d0cd717ee5fb53bf1fa75625dc4de866e5 Author: Pavel Tupitsyn <[email protected]> AuthorDate: Fri Jul 11 14:07:18 2025 +0300 ModelBuilding101IgniteTest works (no connection required) --- .../ModelBuilding101IgniteTest.cs | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/ModelBuilding101IgniteTest.cs b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/ModelBuilding101IgniteTest.cs new file mode 100644 index 00000000000..b8900182844 --- /dev/null +++ b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/ModelBuilding101IgniteTest.cs @@ -0,0 +1,25 @@ +// Licensed to the Apache Software Foundation (ASF) under one or more +// contributor license agreements. See the NOTICE file distributed with +// this work for additional information regarding copyright ownership. +// The ASF licenses this file to You under the Apache License, Version 2.0 +// (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Apache.Ignite.EntityFrameworkCore.FunctionalTests; + +using Extensions; +using Microsoft.EntityFrameworkCore; + +public class ModelBuilding101IgniteTest : ModelBuilding101RelationalTestBase +{ + protected override DbContextOptionsBuilder ConfigureContext(DbContextOptionsBuilder optionsBuilder) => + optionsBuilder.UseIgnite(); +}
