在 C# 中使用 .NET 3.5 将数据集转换为 JSON

Converting a dataset to JSON using .NET 3.5 in C#(在 C# 中使用 .NET 3.5 将数据集转换为 JSON)
本文介绍了在 C# 中使用 .NET 3.5 将数据集转换为 JSON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在寻找一种简单的方法将数据集从 PostgreSQL 数据库转换为JSON 用于我正在构建的项目中.

I have been searching for a simple way to convert a dataset from a PostgreSQL database to JSON for use in a project that I am building.

这是我第一次使用 JSON,我发现找到一个简单的方法来做这件事真的很棘手.目前我一直在使用 StringBuilder 从数据集中的信息创建 JSON 字符串,但我听说使用 .NET 3.5 使用 System.Runtime.Serialization 命名空间,虽然我还没有找到一篇关于这是如何实现的简单文章或博客完毕!最简单的方法是什么?

This is my first time using JSON, and I have found it really tricky to find a simple way of doing this. I have been using a StringBuilder at the moment to create a JSON string from the information in the dataset, but I have heard that it is possible to do this very simply with .NET 3.5 using the System.Runtime.Serialization namespace, though I have yet to find a simple article or blog on how this is done! What is the easiest way to do this?

推荐答案

使用 Newtonsofts Json.Net 并查看 DataTable JSON 序列化 JSON.NET 和 JavaScriptSerializer 用于创建 DataSet-to-JSON 转换器.

Use Newtonsofts Json.Net and check out DataTable JSON Serialization in JSON.NET and JavaScriptSerializer where it's used to create a DataSet-to-JSON converter.

这篇关于在 C# 中使用 .NET 3.5 将数据集转换为 JSON的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)