英文:
Why I am getting FileNotFoundException: Could not load file or assembly 'System.Data.SqlClient,?
问题
FileNotFoundException: 无法加载文件或程序集 'System.Data.SqlClient, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'。系统找不到指定的文件。我在文件夹中有这个DLL文件。
英文:
> An unhandled exception occurred while processing the request.
FileNotFoundException: Could not load file or assembly 'System.Data.SqlClient, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.
I have the dll file in the folder
答案1
得分: 1
使用 Microsoft.Data.SqlClient
库而不是 System.Data.SqlClient
应该可以解决这个问题。
英文:
Using the Microsoft.Data.SqlClient
library instead of System.Data.SqlClient
should resolve the issue.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论