I'm trying to use a Power Query Source connector in SSIS (VS 2017) to get data from an OData data source.
I can create an OData connector and connect to it ok. When I try to look at the columns after entering my query I get the following error "could not load file or assembley 'Microsoft.OData.Edm.NetFX35.V7' (see attached image):
I've downloaded the nuget package directly but I'm not sure how to install it or where to install? Is it possible to connect to an OData source using the Power Query connector?
Tools
menu, selectNuGet Package Manager > Package Manager Console
. In thePackage Manager Console
window, type:Install-Package Microsoft.OData.Edm -Version 7.4.0
. – digital.aaron