如何在C#中使用xml文件创建数据库
我有 LINQ 示例,示例内有一个 .dbml 文件。我想使用 .dbml 文件创建数据库,所以请给我一些关于如何在 C# 中通过 XML 文件创建数据库的想法。
I have LINQ sample example and inside the example there is one .dbml file. I want to create a database using the .dbml file, so just give me some idea on how to create a database through XML file in C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用DataContext.CreateDatabase。
Use DataContext.CreateDatabase.
您是否正在寻找类似 SQLite 的东西?
http://www.sqlite.org/
Are you perhaps looking for something like SQLite?
http://www.sqlite.org/