From fb2f573de41fd8d4bda59dfb08dc80f8a564178b Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 16 Jul 2022 22:28:40 +0200 Subject: [PATCH] Spelling --- I18N Commander/DataModel/Database/Common/DataContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/I18N Commander/DataModel/Database/Common/DataContext.cs b/I18N Commander/DataModel/Database/Common/DataContext.cs index f7b0b7c..4d633ee 100644 --- a/I18N Commander/DataModel/Database/Common/DataContext.cs +++ b/I18N Commander/DataModel/Database/Common/DataContext.cs @@ -37,7 +37,7 @@ public sealed class DataContext : DbContext modelBuilder.Entity
().HasIndex(n => n.Name); modelBuilder.Entity
().HasIndex(n => n.Depth); modelBuilder.Entity
().HasIndex(n => n.DataKey); - // modelBuilder.Entity
().Navigation(n => n.Parent).AutoInclude(); // Cyclic reference, does not work, though. + // modelBuilder.Entity
().Navigation(n => n.Parent).AutoInclude(); // Cycle-reference, does not work, though. modelBuilder.Entity
().Navigation(n => n.TextElements).AutoInclude(); #endregion