@page "/agents" @using Chrono.Model Agents

Agents

@agents.Count agents in the database

@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(); } }