Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要通过在xsd文件中编写代码而不是在xsd文件中使用exixting数据表来创建数据表。右键单击xsd文件---添加---数据表。但我不想用这个,我想写一些代码来创建数据表。我没有解决这个问题的想法,请帮助解决这个问题。谢谢
创建一个DataTable:
DataTable
DataTable dt = new DataTable(); dt.TableName = "Sample"; dt.Columns.Add("Column1"); dt.Columns.Add("Column2"); dt.Columns.Add("Column3"); dt.Columns.Add("Column4"); dt.WriteXmlSchema(@"D:Project1\example.xsd");