Ace_310
Ace_310
You can try something like this ` var categoryNode = new MvcBreadcrumbNode("Category", "Controller", product.Category.Name) { RouteValues = new { Id = 10 } }; `
The example is bit of confusing to me. Do you have a working sample to try out ? What should be the attribute on the action method be like `...
Also, will it be possible to retrieve the Breadcrumb structure in an action method? Like what is the existing structure so that I can build on that? Reason being that...
> Hello @gandhiarpit, > > Doesn't the code you showed in your previous reply work? Looks like your manually created nodes are valid. > For your last question, should I...
> The difference between those node types are in their names. Each type represents a type of "route". `MvcBreadcrumbNode` points to an action in a controller, `RazorPageBreadcrumbNode` points to a...