Remove lazy loading

This commit is contained in:
Pat Hartl 2024-11-27 01:51:47 -06:00
parent 6c75c260f4
commit 5f00f2100a
32 changed files with 91 additions and 97 deletions

View file

@ -12,6 +12,6 @@ namespace LANCommander.Server.Data.Models
[JsonIgnore]
[ForeignKey(nameof(ServerId))]
[InverseProperty("HttpPaths")]
public virtual Server Server { get; set; }
public Server Server { get; set; }
}
}