如何将数据集的表/对象列表发送到客户端应用程序?

发布于 2024-11-06 21:39:06 字数 297 浏览 1 评论 0原文

向所有好人问好。 我的服务器 c# 应用程序有一个存储在 .sdf 文件中的数据库。它加载数据集中的数据,然后加载对象列表。它通过套接字连接到 C# 客户端应用程序。 现在要发送表格,我会执行以下操作: table ->托字节 ->套接字->托表。

有什么方法可以轻松地将数据集的表/对象列表发送到客户端应用程序? 或者也许 sql server 是一个答案?但我的服务器应用程序需要做的不仅仅是数据库。 或者它会比简单的“tobytes”和“totable”方法花费更多的时间,而我什至不应该关心?

请给我一个挖掘方式的建议:)

Hi to all good people out there.
My server c# app has a database stored in .sdf file. It loads data in dataset and then list of objects. It connects to c# client app through sockets.
Right now to send a table i do something like this: table -> tobytes -> socket -> totable.

Is there any way i could easily send a dataset's table/a list of objects to client app?
Or maybe a sql server is an answer? But my server app needs to do much more than just being a database.
Or it will just take way more time than simple "tobytes" and "totable" methods and i shouldnt even care?

Please, give me an adivice in wich way to dig :)

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

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

发布评论

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

评论(2

星光不落少年眉 2024-11-13 21:39:06

ASP.NET(又名 ASMX Web 服务)很容易在服务器上设置,并且 ASMX Web 服务也很容易从 .NET 客户端应用程序连接到。您可以编写返回数据集或对象列表或任何您喜欢的内容的 Web 服务。

ASP.NET (a.k.a. ASMX web services) is very easy to set up on the server, and ASMX web services are very easy to connect to from a .NET client application. You can write web services that return DataSets or lists of objects or whatever you like.

司马昭之心 2024-11-13 21:39:06

如果您使用的是 Visual Studio,则可以使用 Web 服务软件工厂
这样您就可以创建 ASMX 或 WCF 服务,包括使用图表设计服务,这样您只需要编写业务逻辑代码,并且以这种方式连接到服务非常容易(只需检查您是否下载了正确的版本)你的IDE)

If you are using Visual Studio you could use the Web Service Software Factory
That way you can create an ASMX or WCF Service, includes designing your service with diagrams, so that you only need to code the business logic, and it's pretty easy to connect to a service that way (just check that you download the right version for your IDE)

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