Mono 数据集等价
我正在尝试使用 Mono 学习 Web 开发。来自 ASP.NET 背景,我注意到当我尝试向项目添加新文件时没有“数据集”文件。
在 ASP.NET (Visual Studio IDE) 中,您可以添加一个数据集文件,使我们能够开发与数据库的连接,从而以图形方式对其进行建模。 Mono 有这样的东西吗?
顺便说一句,我正在使用 MonoDevelop。
I am trying to learn web development using Mono. Coming from ASP.NET background, I noticed that there is no "dataset" file when I am trying to add new file to the project.
In ASP.NET (Visual Studio IDE) you can add a dataset file that enable us to develop the connection to database, hence modelling it graphically. Is there such thing in Mono ?
By the way, I am using MonoDevelop.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MonoDevelop 不支持使用 GUI 创建数据集。如果没有任何特定原因需要使用 GUI 创建数据集,那么您可以通过两种不同的方式创建数据集。
使用代码。
通过添加 XML 文件并手动键入数据集的 XML,在解决方案中创建数据集文件。
显然,这些方法不如在 Visual Studio 中使用 GUI 设计器那么有效,但它们允许您使用 MonoDevelop。
MonoDevelop does not support creating a DataSet using a GUI. If there isn't any specific reason that you require creating a DataSet using the GUI then you could create DataSets in two different ways.
Using Code.
Create DataSet files within your solution by adding XML files and typing out the XML for your DataSet manually.
Obviously these methods aren't as efficient as using the GUI designer in Visual Studio but they allow you to use MonoDevelop.