public void OnGet() { Blogs = blogData.GetAll().Where(b => b.approved == true).OrderByDescending(b => b.CreatedDate).Take(6); userProfiles = accountData.GetAll(); }