Gopi

Gopi

  • 1.1k
  • 305
  • 21k

why we can not use function name like this?

Dec 21 2022 9:50 AM

When I'm use the function name like this the controller is not even hit why? But its working when I'm using like this GetAll(int id)

 public IActionResult GetAllAsync(int id)
        {
            
            return View();
        }     


Answers (2)