Hello All,
we are trying to add dynamic Order by different column in multiple tables. we will get column name and have to sort data.
for example I want sort Department.Name or Staff=> JoiningDate . I tried different options and didn't work. not sure how to implement.
Below mentioned column need to sort.
Column Name: Department => Name
Column Name: Staff=> JoiningDate
public void getDepartment(String orderBy){
_context.Get<Department>() .Include(department => department.Staff);
}