diff --git a/MyApp/Components/Pages/Home.razor b/MyApp/Components/Pages/Home.razor index ad520c5..f3a98ee 100644 --- a/MyApp/Components/Pages/Home.razor +++ b/MyApp/Components/Pages/Home.razor @@ -19,9 +19,8 @@ protected override void OnInitialized() { using var db = HostContext.AppHost.GetDbConnection(); - Posts = db.Select() + Posts = db.Select(db.From() .OrderByDescending(x => x.Score) - .Take(25) - .ToList(); + .Take(50)); } }