I've tried to make a new data Connection From Microsoft Visual Studio Entity Framework Data Model Wizard to Azure SQL Data Warehouse , but got an error:
Failed to retrieve data for this request. unknown property PrimaryFilePath
I can successfully "Test Connection". I also can create connection to Master database, but not to one, created by me.
Question Connecting to SQL Azure in Server Explorer returns error "unknown property PrimaryFilePath" blames mismatched collations, but
SELECT SERVERPROPERTY ('Collation') SELECT DATABASEPROPERTYEX('MyDataBase' , 'Collation')
returns SQL_Latin1_General_CP1_CI_AS for both server and database.
As a workaround ( suggested on the Microsoft Forums thread failed-to-retrieve-data-for-this-request-unknown-property-primaryfilepath ) I re-created tables from the Azure SQL Data Warehouse on a local SQL Server and after more development will try to reconnect the Entity Framework Data Model to Azure SQL Data Warehouse.
Is any better way to create data connection to Azure SQL Data Warehouse and avoid 'unknown property PrimaryFilePath' error?
What actually "property PrimaryFilePath" mean and can I specify it somehow?
I got same error in VS 2015 and could not do much. So I used VS 2017 and it worked well.