Creating Menu Items
Example
builder.AddMenuItem(
new MenuItem
{
Name = "Home", // Display name for the menu
PageId = AppConstants.Pages.HomePage // The page this menu item links to
}
);Explanation
PreviousAdding Pages and Components to the App ModelNextRegistering Entity Classes and Creating CRUD Pages
Last updated