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.
EntityFrameworkCore.Jet/test/EFCore.Jet.FunctionalTests/UpdatesJetTPCTest.cs

122 lines
3.6 KiB
C#

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Diagnostics;
using Microsoft.EntityFrameworkCore.TestModels.UpdatesModel;
using Xunit.Abstractions;
#nullable enable
namespace EntityFrameworkCore.Jet.FunctionalTests;
public class UpdatesJetTPCTest : UpdatesJetTestBase<UpdatesJetTPCTest.UpdatesJetTPCFixture>
{
// ReSharper disable once UnusedParameter.Local
public UpdatesJetTPCTest(UpdatesJetTPCFixture fixture, ITestOutputHelper testOutputHelper)
: base(fixture, testOutputHelper)
{
}
public override void Save_with_shared_foreign_key()
{
base.Save_with_shared_foreign_key();
AssertContainsSql(
@"@p0=NULL (Size = 8000) (DbType = Binary)
@p1='ProductWithBytes' (Nullable = false) (Size = 4000)
@p2=NULL (Size = 4000)
SET IMPLICIT_TRANSACTIONS OFF;
SET NOCOUNT ON;
INSERT INTO [ProductBase] ([Bytes], [Discriminator], [ProductWithBytes_Name])
OUTPUT INSERTED.[Id]
VALUES (@p0, @p1, @p2);",
@"@p0=NULL (Size = 4000)
@p1='777'
SET IMPLICIT_TRANSACTIONS OFF;
SET NOCOUNT ON;
INSERT INTO [SpecialCategory] ([Name], [PrincipalId])
OUTPUT INSERTED.[Id]
VALUES (@p0, @p1);");
}
public override void Save_replaced_principal()
{
base.Save_replaced_principal();
AssertSql(
"""
SELECT TOP(2) [t].[Id], [t].[Name], [t].[PrincipalId], [t].[Discriminator]
FROM (
SELECT [c].[Id], [c].[Name], [c].[PrincipalId], N'Category' AS [Discriminator]
FROM [Categories] AS [c]
UNION ALL
SELECT [s].[Id], [s].[Name], [s].[PrincipalId], N'SpecialCategory' AS [Discriminator]
FROM [SpecialCategory] AS [s]
) AS [t]
""",
//
"""
@__category_PrincipalId_0='778' (Nullable = true)
SELECT [p].[Id], [p].[Discriminator], [p].[DependentId], [p].[Name], [p].[Price]
FROM [ProductBase] AS [p]
WHERE [p].[Discriminator] = N'Product' AND [p].[DependentId] = @__category_PrincipalId_0
""",
//
"""
@p1='1'
@p0='New Category' (Size = 4000)
SET IMPLICIT_TRANSACTIONS OFF;
SET NOCOUNT ON;
UPDATE [Categories] SET [Name] = @p0
OUTPUT 1
WHERE [Id] = @p1;
""",
//
"""
SELECT TOP(2) [t].[Id], [t].[Name], [t].[PrincipalId], [t].[Discriminator]
FROM (
SELECT [c].[Id], [c].[Name], [c].[PrincipalId], N'Category' AS [Discriminator]
FROM [Categories] AS [c]
UNION ALL
SELECT [s].[Id], [s].[Name], [s].[PrincipalId], N'SpecialCategory' AS [Discriminator]
FROM [SpecialCategory] AS [s]
) AS [t]
""",
//
"""
@__category_PrincipalId_0='778' (Nullable = true)
SELECT [p].[Id], [p].[Discriminator], [p].[DependentId], [p].[Name], [p].[Price]
FROM [ProductBase] AS [p]
WHERE [p].[Discriminator] = N'Product' AND [p].[DependentId] = @__category_PrincipalId_0
""");
}
public class UpdatesJetTPCFixture : UpdatesJetFixtureBase
{
protected override string StoreName
=> "UpdateTestTPC";
public override DbContextOptionsBuilder AddOptions(DbContextOptionsBuilder builder)
=> base.AddOptions(builder).ConfigureWarnings(
w =>
{
w.Log(RelationalEventId.ForeignKeyTpcPrincipalWarning);
});
protected override void OnModelCreating(ModelBuilder modelBuilder, DbContext context)
{
base.OnModelCreating(modelBuilder, context);
modelBuilder.Entity<Category>().UseTpcMappingStrategy();
// modelBuilder.Entity<GiftObscurer>().UseTpcMappingStrategy(); Issue #29874
modelBuilder.Entity<LiftObscurer>().UseTpcMappingStrategy();
}
}
}