Welcome to the navigation

Proident, anim cupidatat aliqua, eu fugiat est ut id officia laboris ea ullamco consectetur aute sunt dolore quis in voluptate ex nulla incididunt elit, labore. Ut consectetur et id reprehenderit sed labore incididunt dolore cupidatat cillum anim ut aliqua, pariatur, esse commodo aute enim voluptate ullamco nostrud culpa velit in

Yeah, this will be replaced... But please enjoy the search!

Get categories from EPiServer block

Categories Tags

The blocks in EPiServer include the Category property but the BlockData object does not expose any category property in code. The solution is to cast the BlockData object to ICategorizable.

(currentBlock as ICategorizable).Category

A typical usage scenario for me would be to fetch what I need in the controller and put it in the ViewModel.

public class ParallaxNavigationBlockController : BlockController<ParallaxNavigationBlock>
{
    public override ActionResult Index(ParallaxNavigationBlock currentBlock)
    {
        var model = new ParallaxNavigationViewModel
        {
            Category = (currentBlock as ICategorizable).Category.GetCategories().FirstOrDefault()
        };

        return PartialView(model);
    }
}

// ViewModel
public class ParallaxNavigationViewModel
{
    public Category Category { get; set; }
}

// Extension method for categories
public static IEnumerable<Category> GetCategories(this CategoryList categoryList)
{
    CategoryRepository categoryRepository = ServiceLocator.Current.GetInstance<CategoryRepository>();
    return categoryList.Select(x => categoryRepository.Get(x));
}