request/src/request.persistence.entityframeworkcore.tests/_fixtures/NameProjectionSpec.cs

12 lines
286 B
C#
Raw Normal View History

2026-07-01 20:44:24 +02:00
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Request.Persistence.EntityFrameworkCore.Tests;
internal sealed class NameProjectionSpec : Specification<FakeEntity, string>
{
public NameProjectionSpec()
{
Query.Select(e => e.Name);
}
}