In the following code snippet since I am not able to use async/await keywords, is this method make behave synchronously?
public Task<IQueryable<Student>> Handle(GetStudentByIdRequest request)
{
return Task.FromResult(repository.GetAllCalfSubjects(student => student.studentId.Equals(request.studentId)));
}