gpt4 book ai didi

c# - Entity Framework 无法更新数据库

转载 作者:IT王子 更新时间:2023-10-29 04:05:52 29 4
gpt4 key购买 nike

每当我保存到数据库时,我的应用程序崩溃并出现以下错误。

Unable to find an entry point named 'SetClrFeatureSwitchMap' in DLL 'SqlServerSpatial110.dll'.

这个错误是在昨天下午 Windows 更新和 PC 重启后开始的。该dll在项目中没有被引用,也不在bin文件夹中。

我使用 EF5,我可以连接到数据库并提取数据,但是当我调用 ObjectContext.SaveChanges() 时发生错误。

该应用程序不使用几何,所以我不知道这是从哪里来的。

最佳答案

我遇到了同样的问题,并通过将以下行添加到我的应用程序的 web.config 来修复它:

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.SqlServer.Types" publicKeyToken="89845dcd8080cc91" />
<bindingRedirect oldVersion="1.0.0.0-11.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

这会强制 EntityFramework 使用版本 10 的 SqlServer.Types.dll,它显然没有 Geometry 类型。

关于c# - Entity Framework 无法更新数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34204990/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com