12 lines
283 B
C#
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);
|
|
}
|
|
}
|