SmartBreadcrumbs
SmartBreadcrumbs copied to clipboard
Breadcrumbs with parameters
var categoryNode = new BreadcrumbNode(product.Category.Name, "Controller", "Category", null, new { id = 10 });
Doesn't work :/ on net core 2.1
I neeeeeddddd help!!!!!!!!!!!!!!!!!!!!!!!
You can try something like this
var categoryNode = new MvcBreadcrumbNode("Category", "Controller", product.Category.Name) { RouteValues = new { Id = 10 } };