2
Answers

why we can not use function name like this?

Gopi

Gopi

2y
601
1

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)