User-1032240251 posted
The current build does not have any built-in support for automatically finding custom pages.
One way to do this is by creating controllers which override the appropriate methods. For example:
public class PaginasController : DynamicScaffoldController<Paginas> {
protected override ActionResult OnList(PagedList<Paginas> entities, string sort) {
ViewData["sort"] = sort;
return View("CustomPages/Paginas/List", entities);
}
}