Skip to content

Commit

Permalink
fix by id dot notation
Browse files Browse the repository at this point in the history
  • Loading branch information
shemogumbe committed Apr 5, 2023
1 parent af0d4a9 commit 03cf7b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ private static string GetFluentApiPath(IEnumerable<OpenApiUrlTreeNode> nodes)
{
var dot = y.StartsWith("by_id") ? string.Empty : "_";
return $"{x.Trim('$')}{dot}{y.Trim('$')}";
}).Replace("()ById(", "by_id(")
}).Replace("()ById(", "_by_id(")
.Replace("()().", "().");
}
}

0 comments on commit 03cf7b0

Please sign in to comment.