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 57642aa116bc05f4d3822dd6a6ec51c9c0d89551 Author: Pavel Tupitsyn <[email protected]> AuthorDate: Fri Jul 11 17:12:32 2025 +0300 wip --- .../Query/NorthwindQueryFiltersQueryIgniteTest.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/Query/NorthwindQueryFiltersQueryIgniteTest.cs b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/Query/NorthwindQueryFiltersQueryIgniteTest.cs new file mode 100644 index 00000000000..e0ba988b534 --- /dev/null +++ b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/Query/NorthwindQueryFiltersQueryIgniteTest.cs @@ -0,0 +1,27 @@ +// 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.Query; + +using Microsoft.EntityFrameworkCore.Query; + +public class NorthwindQueryFiltersQueryIgniteTest : NorthwindQueryFiltersQueryTestBase< + NorthwindQueryIgniteFixture<NorthwindQueryFiltersCustomizer>> +{ + public NorthwindQueryFiltersQueryIgniteTest(NorthwindQueryIgniteFixture<NorthwindQueryFiltersCustomizer> fixture) + : base(fixture) + { + } +}
