summaryrefslogtreecommitdiff
path: root/HBContext.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-08-24 14:23:34 +1000
committerJake Mannens <jake@asger.xyz>2025-08-19 23:33:18 +1000
commit9a99c6859c2e740e1b6afe3c8c1020343a848197 (patch)
treef1525538a4b0f89eca4d463deeea53743eedc98d /HBContext.cs
parente861c6731ac3c7ebb8fcf565e28669e0341f5265 (diff)
Removed EFCore lazy-loading proxies
Diffstat (limited to 'HBContext.cs')
-rw-r--r--HBContext.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/HBContext.cs b/HBContext.cs
index 74c040c..d0cd26f 100644
--- a/HBContext.cs
+++ b/HBContext.cs
@@ -19,7 +19,6 @@ public class HBContext : DbContext {
this.config = config;
protected override void OnConfiguring(DbContextOptionsBuilder options) {
- options.UseLazyLoadingProxies();
options.UseNpgsql(config.DbConnectionString);
#if DEBUG