C# 不支持关键字';数据源';错误

C# 不支持关键字';数据源';错误,c#,entity-framework,ado.net,connection-string,C#,Entity Framework,Ado.net,Connection String,我的连接字符串无法登录到数据库。这是我的连接字符串 <add name="ProductEntities" connectionString="Data Source=**.**.***.**\MSSQLSERVER2017;Database=product1_;User Id=product;Password=*****;" providerName="System.Data.EntityClient" /> 另一个错误

我的连接字符串无法登录到数据库。这是我的连接字符串

<add name="ProductEntities" connectionString="Data Source=**.**.***.**\MSSQLSERVER2017;Database=product1_;User Id=product;Password=*****;" providerName="System.Data.EntityClient" />

另一个错误是数据库无法打开。如何解决此问题?

Server=…
将是正确的。@RomanRyzhiy现在说关键字不支持“Server”
   connectionString="Data Source=**.***.**.**\MSSQLSERVER2017;Network Library=DBMSSOCN;Initial Catalog=product1_;User ID=product;Password=*****;"

 connectionString="data source=**.***.**.**\MSSQLSERVER2017;initial catalog=product1_;user id=product;password=*****;integrated security=True;MultipleActiveResultSets=True" 
 providerName="System.Data.EntityClient" />