自定义工具错误生成代码失败
为什么会出现这个错误?我只是在数据集设计器中设置一些默认值...这是第二次出现...
“自定义工具错误无法生成代码。引发了‘System.OutOfMemoryException’类型的异常”
Why this error is appearing? I was just setting some default values in a dataset designer... its second time that this is appearing...
"Custom tool error Failed to generate code. Exception of type 'System.OutOfMemoryException' was thrown"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我刚刚找到了一种重新生成代码的方法。
在
解决方案资源管理器
中,右键单击您的数据集,然后单击运行自定义工具
。我是在关闭并重新打开 VS2010 后执行的...
如果您遇到问题,希望这对您有所帮助...
祝你好运
I just found a way to regenerate codes.
In
Solution Explorer
right click on your DataSet and clickRun Custom Tool
.I do it after closing and reopening VS2010...
Hope this help you, if you faced the problem...
good luck
当我在 Visual Studio 2019 上将目标框架从 .net 4.5 更改为 .net 4.8 时,就发生了这种情况。
对我来说,Connections 标记正在寻找不再存在的全局连接字符串或 DatabaseProvinder。
如果您不再需要连接,则可以将其删除。
这样做:
之后,您将得到如下内容:
参考/类似问题
This happened to me when I changed the target framework from .net 4.5 to .net 4.8 on Visual Studio 2019.
For me was the Connections tag was looking for a global connection string or DatabaseProvinder that no longer existed.
If you don't need the connection anymore, You can just get rid of it.
Do that:
After that, you will have something like this:
Reference / Similar question
我发现这取决于 .NET 的特定版本。就我而言,我永远无法使用 4.8 生成它,但它与 4.8.1 完美配合。鉴于此,请尝试升级您的 .NET 版本。
I've found this to be dependent on the particular version of .NET. In my case, I could never get it to generate using 4.8–but it works perfectly with 4.8.1. Given that, try to upgrade your version of .NET.