![]() |
VOOZH | about |
This article illustrates using LINQ to access tables within the FHIR via the CData ADO.NET Data Provider for FHIR. To achieve this, we will use LINQ to Entity Framework, which facilitates the generation of connections and can be seamlessly employed with any CData ADO.NET Data Providers to access data through LINQ.
See the help documentation for a guide to setting up an EF 6 project to use the provider.
Enter your data source connection information.
Set URL to the Service Base URL of the FHIR server. This is the address where the resources are defined in the FHIR server you would like to connect to. Set ConnectionType to a supported connection type. Set ContentType to the format of your documents. Set AuthScheme based on the authentication requirements for your FHIR server.
Generic, Azure-based, AWS-based, and Google-based FHIR server implementations are supported.
The product supports connections to custom instances of FHIR. Authentication to custom FHIR servers is handled via OAuth (read more about OAuth in the Help documentation. Before you can connect to custom FHIR instances, you must set ConnectionType to Generic.
Below is a typical connection string:
URL=http://test.fhir.org/r4b/;ConnectionType=Generic;ContentType=JSON;AuthScheme=None;
Using the entity you created, you can now perform select commands. For example:
FHIREntities context = new FHIREntities();
var patientQuery = from patient in context.Patient
select patient;
foreach (var result in patientQuery) {
Console.WriteLine("{0} {1} ", result.Id, result.Id);
}
See "LINQ and Entity Framework" chapter in the help documentation for example queries of the supported LINQ.
Download a free trial of the FHIR Data Provider to get started:
Download NowLearn more:
👁 FHIR IconRapidly create and deploy powerful .NET applications that integrate with FHIR.