public async Task OnGet() { // set all the data for my .cshtml page. // Get the specific Restaurant data for the id that was sent. Post = await _post.GetSinglePost(ID); }
public async void OnGet() { Post = await _post.GetSinglePost(ID.GetValueOrDefault()) ?? new Posts(); }