コード例 #1
0
        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);
        }
コード例 #2
0
 public async void OnGet()
 {
     Post = await _post.GetSinglePost(ID.GetValueOrDefault()) ?? new Posts();
 }