Vipin Jha
1 questions
0
votes
0
answer
2
views
How get value on the basis of two input value in Dotnet core and need to call in API creation
My problem is that I want to call Course on the basis of two value get through the drop-down. Link first I selected department and the Gradelevle.
Here is the schema in of Course.cs
public partial class Course
{
public int ID { get; set; }
public string Name { get; set; }
public int DepartmentID { g...