12 lines
289 B
C#
12 lines
289 B
C#
|
|
// Copyright (c) The Geekeey Authors
|
||
|
|
// SPDX-License-Identifier: EUPL-1.2
|
||
|
|
|
||
|
|
namespace Geekeey.Request.Persistence.EntityFrameworkCore.Tests;
|
||
|
|
|
||
|
|
internal sealed class IncludeDetailsSpec : Specification<FakeEntity>
|
||
|
|
{
|
||
|
|
public IncludeDetailsSpec()
|
||
|
|
{
|
||
|
|
Query.Include(static e => e.Details);
|
||
|
|
}
|
||
|
|
}
|