We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以使用 http://xsd2code.codeplex.com/ 从 XSD 生成 C# 类。不要忘记启用Serialization 和GenerateXMLAttributes。将CollectionObject Type设置为实现ICollection的类型,例如List,不要使用IList。
接下来,照常实现 DbContext。
You can use http://xsd2code.codeplex.com/ to generate C# classes from your XSD. Don't forget to enable Serialization and GenerateXMLAttributes. Set ColllectionObject Type to a type that implements ICollection, for instance List, don't use IList.
Next, implement your DbContext as usual.
我不认为 LINQ to SQL 支持从任何类型的模型创建数据库。 .NET 4.0 中的实体框架可以。
另外,请注意并非所有 XML 模式都映射到有效的关系数据库结构。
I don't believe LINQ to SQL supports creating a database from a model of any kind. Entity Framework in .NET 4.0 does.
Also, be aware that not all XML schemas map to valid relational database structures.
在 VS 中打开一个 XSD 文件,在 VS 中创建一个 DataSet,然后在设计器模式下将 XSD 文件复制到数据集中。这将生成一个类型化的 DataContext。
Open an XSD file in VS, create a DataSet in VS, then copy the XSD file into the dataset both in designer mode. That'll generate the a typed DataContext.