自定义工具错误无法生成代码

时间:2010-10-30 11:17:50

标签: visual-studio-2010 dataset-designer customtool custom-tools

为什么会出现此错误?我只是在数据集设计器中设置了一些默认值......第二次出现这种情况......
“自定义工具错误无法生成代码。抛出了'System.OutOfMemoryException'类型的异常”

2 个答案:

答案 0 :(得分:8)

我刚刚找到了重新生成代码的方法 在Solution Explorer中右键单击您的数据集,然后点击Run Custom Tool 关闭并重新打开VS2010后我就这么做了...... 如果您遇到问题,希望这对您有所帮助...... 祝你好运

答案 1 :(得分:0)

当我在Visual Studio 2019上将目标框架从.net 4.5更改为.net 4.8时,这发生在我身上。

对我来说,Connections标记正在寻找不再存在的全局连接字符串或DatabaseProvinder。

如果您不再需要连接,则可以删除它。

这样做:

1- Right-click on the .xsd file chose open with and chose 'XML (Text) Editor', or another text editor that you prefer. 

2- Delete de content of the Connections tag and closes it.

在那之后,您将得到以下内容:

...
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
    <Connections />
    <Tables />
    <Sources />
  </DataSource>
...

Reference / Similar question