I have made a web application on windows using VS2017 community. I have created a local db .mdf and the connection string looks like this
<add name="ShoppingWebsiteMVCEntities4"
connectionString="metadata=res://ShoppingWebsiteMVC/Models.ShoppingWebsiteModel.csdl|res://ShoppingWebsiteMVC/Models.ShoppingWebsiteModel.ssdl|res://ShoppingWebsiteMVC/Models.ShoppingWebsiteModel.msl;provider=System.Data.SqlClient;provider connection string="data source=(LocalDB)\MSSQLLocalDB;attachdbfilename=|DataDirectory|\ShoppingWebsiteMVC.mdf;integrated security=True;multipleactiveresultsets=True;connect timeout=30;application name=EntityFramework""
providerName="System.Data.EntityClient" />
It works on my machine but not on the clients machine.
Client gets this error
Could not resolve host '(LocalDB)'
Client is using MAC. Does he have to install anything else apart from VS 2017?