feat: spec + repo

This commit is contained in:
Louis Seubert 2026-07-01 20:44:24 +02:00
commit 2206fe027a
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
78 changed files with 3870 additions and 0 deletions

View file

@ -0,0 +1,12 @@
// 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);
}
}