Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Jul 29, 2023
2 parents 8c34dd9 + b9d022d commit 959283b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static string ToPascalCase(this string value, Regex splitRegex)
}
else
{
output.Append(name);
output.Append(name.ToUpper());
}
}
}
Expand All @@ -140,4 +140,4 @@ public static string ToPascalCase(this string value, Regex splitRegex)
}


}
}
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ private void GenerateRelationshipProperties()
CodeBuilder.AppendLine($"/// Gets or sets the navigation collection for entity <see cref=\"{primaryFullName}\" />.");
CodeBuilder.AppendLine("/// </summary>");
CodeBuilder.AppendLine("/// <value>");
CodeBuilder.AppendLine($"/// The the navigation collection for entity <see cref=\"{primaryFullName}\" />.");
CodeBuilder.AppendLine($"/// The navigation collection for entity <see cref=\"{primaryFullName}\" />.");
CodeBuilder.AppendLine("/// </value>");
}

Expand All @@ -188,7 +188,7 @@ private void GenerateRelationshipProperties()
CodeBuilder.AppendLine($"/// Gets or sets the navigation property for entity <see cref=\"{primaryFullName}\" />.");
CodeBuilder.AppendLine("/// </summary>");
CodeBuilder.AppendLine("/// <value>");
CodeBuilder.AppendLine($"/// The the navigation property for entity <see cref=\"{primaryFullName}\" />.");
CodeBuilder.AppendLine($"/// The navigation property for entity <see cref=\"{primaryFullName}\" />.");
CodeBuilder.AppendLine("/// </value>");

foreach (var property in relationship.Properties)
Expand Down

0 comments on commit 959283b

Please sign in to comment.