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