(Unfixable) Assembly exists on SQL Server 2014 but it claims it doesn't have it

只谈情不闲聊 提交于 2019-12-02 07:21:15
Solomon Rutzky

The issue here is that you are attempting to use an unsupported .NET Framework library: ServiceModel. This library did work in SQL Server 2005, 2008, and 2008 R2. However, since it is not in the "supported" list, it is not guaranteed to work across all .NET Framework upgrades. It used to be a pure-MSIL Assembly but then they changed it to be a mixed-mode Assembly, and those cannot be loaded into SQL Server.

This issue has been documented on Stack Overflow here:

More info here:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!