From 7e3d674de51baa1226e48e1cba2109a5d7bede7a Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Thu, 18 Nov 2021 12:31:14 -0600 Subject: [PATCH] =?UTF-8?q?fix(dir):=20=F0=9F=90=9B=20pluralization=20of?= =?UTF-8?q?=20software=5Fsyntaxes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Persistence/Queries/Entities/SoftwareSyntax.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/SoftwareSyntax.cs b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/SoftwareSyntax.cs index 0e0df7d23..7683f99c0 100644 --- a/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/SoftwareSyntax.cs +++ b/services/Directory/FilterLists.Directory.Infrastructure/Persistence/Queries/Entities/SoftwareSyntax.cs @@ -20,7 +20,7 @@ public virtual void Configure(EntityTypeBuilder builder) // TODO: register and resolve INameRewriter var nr = new SnakeCaseNameRewriter(CultureInfo.InvariantCulture); - builder.ToTable($"{nr.RewriteName(nameof(SoftwareSyntax))}s"); + builder.ToTable($"{nr.RewriteName(nameof(SoftwareSyntax))}es"); builder.HasKey(ss => new { ss.SoftwareId, ss.SyntaxId }); builder.HasDataJsonFile(); }