I've probably missed something somewhere.
I am trying to call a FHIR server using FHIR Client and want to return a Bundle with all the patients. I've tried the following but only getting errors:
****
SearchParams q = new SearchParams().Include("Patient");
var bundle = fhirClient.Search<Patient>(q);
****
Is there another way to do this
Thanks