[#70] ElwigData: Sync WbKg
All checks were successful
Test / Run tests (push) Successful in 2m20s

This commit is contained in:
2025-08-07 16:06:26 +02:00
parent d3157e4d48
commit 1d89e75688
5 changed files with 183 additions and 48 deletions

View File

@@ -6,10 +6,10 @@ namespace Elwig.Models.Entities {
[Table("wb_gl"), PrimaryKey("GlNr")]
public class WbGl {
[Column("glnr")]
public int GlNr { get; private set; }
public int GlNr { get; set; }
[Column("name")]
public string Name { get; private set; } = null!;
public string Name { get; set; } = null!;
[InverseProperty(nameof(WbKg.Gl))]
public virtual ICollection<WbKg> Kgs { get; private set; } = null!;