@page "/agents" Agents
@code { private List agents = []; protected override void OnInitialized() { agents = CardDatabase.Cards .Where(c => c.Category == "Agent") .OrderBy(c => c.Cost) .ThenBy(c => c.Name) .ToList(); } }