request/src/request.persistence.entityframeworkcore.tests/_fixtures/IncludeChildSpec.cs
2026-07-01 20:44:24 +02:00

12 lines
283 B
C#

// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Request.Persistence.EntityFrameworkCore.Tests;
internal sealed class IncludeChildSpec : Specification<FakeEntity>
{
public IncludeChildSpec()
{
Query.Include(static e => e.Child);
}
}