You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comments = string.Format("Child {0} where [{1}].{2} point to this entity ({3})", Inflector.MakePlural(fkTable.NameHumanCase), fkTable.Name, fkNames, fks.First().ConstraintName)
@@ -3308,7 +3308,7 @@ SELECT SERVERPROPERTY('Edition') AS Edition,
3308
3308
case Relationship.ManyToMany:
3309
3309
var initialization2 = string.Format(" = new {0}<{1}>();", collectionType, fkTable.NameHumanCaseWithSuffix);
3310
3310
ReverseNavigationProperty.Add(
3311
-
new PropertyAndComments()
3311
+
new PropertyAndComments()
3312
3312
{
3313
3313
Definition = string.Format("public virtual System.Collections.Generic.ICollection<{0}> {1} {{ get; set; }}{2}{3}", fkTable.NameHumanCaseWithSuffix, propName, initialization2, includeComments != CommentsStyle.None ? " // Many to many mapping" : string.Empty),
0 commit comments