zHaytam / SmartBreadcrumbs

A utility library for ASP.NET Core (both MVC and Razor Pages) websites to easily add and customize breadcrumbs.
https://blog.zhaytam.com/2018/06/24/asp-net-core-using-smartbreadcrumbs/
MIT License
161 stars 77 forks source link

Area, Nested Folders and Page Models #93

Open TorreyGarland opened 3 years ago

TorreyGarland commented 3 years ago

I have an IndexModel at Areas.Administration.Pages.IndexModel.cs.

I have a nested IndexModel at Areas.Administration.Pages.Users.IndexModel.cs.

I have an IndexModel at Pages.IndexModel.cs

I have an IndexModel at Pages.Features.IndexModel.cs.

The code in ExtractRazorPageKey under ReflectionExtensions is not taking area names or nested folders under areas into account and may throw a exception because of a duplicate key.

Related to Item #83.