C# Lib 查询 MySQL DB

发布于 2024-09-24 09:17:28 字数 493 浏览 0 评论 0原文

有没有什么好的库来查询 MySQL DB?我安装了 mysql 连接器 .net,它基本上让我替换了 ado.net,如 MySQLCommand、MySQLAdapter 等,

MySqlCommand command = connection.CreateCommand ();
command.CommandText = "select * from samples";

但无论如何你都必须编写大量代码,是否有任何 lib 来包装这个,所以我写了类似

p = MysqlProvider.Connect();
dataSet = p.Execute(query);

array = p.Execute(query);
value = p.ExecuteAsValue(query);

ETC?

有什么想法吗?

谢谢, 德米特里

Is there any good nice library to query MySQL DB? I have mysql connector .net installed, and it basically gives me ado.net replaced, like MySQLCommand, MySQLAdapter etc

MySqlCommand command = connection.CreateCommand ();
command.CommandText = "select * from samples";

but you have to write a lot of code anyway, is there any lib, that wraps up this, so I write something like

p = MysqlProvider.Connect();
dataSet = p.Execute(query);

or

array = p.Execute(query);
value = p.ExecuteAsValue(query);

etc?

Any ideas?

Thanks,
Dmitry

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

メ斷腸人バ 2024-10-01 09:17:28

听起来您正在寻找 ORM,请务必通读:https://stackoverflow.com/tags/orm/faq

特别是 您会推荐哪种 .NET ORM?

Sounds like you are looking for an ORM, be sure to read through: https://stackoverflow.com/tags/orm/faq

In particular Which ORM for .NET would you recommend?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文