Skip to content

Commit

Permalink
Update model.md (#1889)
Browse files Browse the repository at this point in the history
Removed a misplaced `\`
  • Loading branch information
Psypher9 authored and ajcvickers committed Nov 5, 2019
1 parent 5c43c8a commit f66d2b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public class ForeignKeyNamingConvention : IStoreModelConvention<AssociationType>

private void NormalizeForeignKeyProperties(ReadOnlyMetadataCollection<EdmProperty> properties)
{
for (int i = 0; i \< properties.Count; ++i)
for (int i = 0; i < properties.Count; ++i)
{
int underscoreIndex = properties[i].Name.IndexOf('_');
if (underscoreIndex > 0)
Expand Down

0 comments on commit f66d2b8

Please sign in to comment.