我有一个mvc web项目。当我运行它时,我接受了该错误。"不支持关键字:compatible参数名称:keyword"。我查看了web.config和appconfig。但我看不出任何错误。我可以为此错误做些什么?
我的网络配置连接字符串
add name="Entities" connectionString="metadata=res://*/DataModel.Model.csdl|res://*/DataModel.Model.ssdl|res://*/DataModel.Model.msl;provider=Npgsql;provider connection string="port=5432;timeout=15;pooling=True;minpoolsize=1;maxpoolsize=500;commandtimeout=30;compatible=2.2.3.0;host=localhost;database=toki;user id=postgres;password=master;sslmode=Disable;connectionlifetime=100;enlist=True;preloadreader=True"" providerName="System.Data.EntityClient"
我的应用配置连接字符串
add name="Entities" connectionString="metadata=res://*/DataModel.Model.csdl|res://*/DataModel.Model.ssdl|res://*/DataModel.Model.msl;provider=Npgsql;provider connection string="port=5432;timeout=15;pooling=True;minpoolsize=1;maxpoolsize=500;commandtimeout=30;compatible=2.2.3.0;host=localhost;database=toki;user id=postgres;password=master;sslmode=Disable;connectionlifetime=100;enlist=True;preloadreader=True"" providerName="System.Data.EntityClient"
答案 0 :(得分:0)
尝试从两个连接字符串中删除compatible=2.2.3.0;
。