我正在使用Visual Studio 2008 Sp1在erp项目中工作,我有一个类型化的数据集,它包含很多数据表和很多表适配器.Designer.cs文件是8 MB,突然间我试图openit使用visual studio designer,下面的代码来找我
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="erpDataSet" targetNamespace="http://tempuri.org/erpDataSet1.xsd" xmlns:mstns="http://tempuri.org/erpDataSet1.xsd" xmlns="http://tempuri.org/erpDataSet1.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="erpConnectionString" IsAppSettingsProperty="true" Modifier="Assembly" Name="erpConnectionString (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.Sbic.Pro
我的XSD文件内容已经消失,:( :( :( 我不明白为什么,我怎么能恢复它。 我疯了但我不知道是不是这个原因,我的连接字符串在设置“app.config”我删除它并将其添加到主项目引用的另一个项目的资源。
我该怎么办,请求帮助我。
答案 0 :(得分:0)
如果我了解您的问题,您就是在“.Designer.cs”中添加代码。该文件是自动生成的文件。每次重新保存XSD文件时,都会重新生成designer.cs文件。您永远不应该向designer.cs文件添加内容。如果需要向数据集添加功能,可以使用在生成的文件中找到的相同名称空间在不同文件中创建“部分”类来扩展数据集。