You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
542 B
C#
23 lines
542 B
C#
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore.Query;
|
|
using Microsoft.EntityFrameworkCore.TestModels;
|
|
using Microsoft.EntityFrameworkCore.TestUtilities;
|
|
using Xunit;
|
|
|
|
#pragma warning disable 1998
|
|
|
|
namespace EntityFramework.Jet.FunctionalTests
|
|
{
|
|
public class AsyncQueryJetTest : AsyncQueryTestBase<NorthwindQueryJetFixture<NoopModelCustomizer>>
|
|
{
|
|
|
|
|
|
public AsyncQueryJetTest(NorthwindQueryJetFixture<NoopModelCustomizer> fixture)
|
|
: base(fixture)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|