MySQL 的 ADO.NET 数据服务
嘿!我为此四处寻找,但没有运气。有没有办法通过 ADO.NET WCF 数据服务公开 MySQL 安装(Linux 机器)的 CRUD 方法?我真的很想在我的 WPF 应用程序中利用它:)
谢谢!
编辑::
DI知道它被称为Windows通信基金会,但只是想我会把它放在那里并希望它是可能的
Hey! I've searched high and low for this, and no luck. Is there a way that CRUD methods for a MySQL install (Linux box) be exposed via ADO.NET WCF Data Services? I would really love to leverage this in my WPF app :)
Thank u!
EDIT:
:D I am aware that it's called Windows Communication Foundation, but just thought I'd put it out there and hope that it is possible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
做到这一点的唯一方法是使用像 MySql to linq 提供程序之类的东西,并将 wcf 服务托管在 Windows 服务器盒子上,该服务器以通常的连接字符串方式连接到 mysql linux 盒子。
因此,您将需要 Windows 服务器以及托管 mysql 数据库的 Linux 服务器,除非您想将 mysql 实例移动到同一个 Windows 机器。
希望这有帮助。
编辑
几个可能有帮助的链接... 这里和这里查看 Mono WCF Core 堆栈,这可能更适合您。
The only way to do this would be to use a something like a MySql to linq provider and host the wcf service on a windows server box which connects to the mysql linux box in the usual connection string way.
So you will need windows server as well as the linux one hosting the mysql database, unless you want to move the mysql instance to the same windows box.
Hope this helps.
Edit
Couple of potential links which could help ... here and hereHave a look at the Mono WCF Core stack, this might be better for you.