mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(dir): 🐛 pluralization of software_syntaxes
This commit is contained in:
parent
3c98c6a67a
commit
7e3d674de5
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ public virtual void Configure(EntityTypeBuilder<SoftwareSyntax> 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<SoftwareSyntax>();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue