namespace LaaProductionWeb.Blazor.Components.Logging { using LaaProductionWeb.Blazor.Components.Logging.Sqlite; using Microsoft.AspNetCore.Components; using System.Collections.Generic; public partial class Logging : ComponentBase { private IEnumerable Logs { get; set; } [Inject] private SqliteLoggingDbContext Sqlite { get; set; } protected override void OnInitialized() => this.Logs = this.Sqlite.GetLogs(); } }