在.Net Core 3.1中,可以通过以下步骤从Sql命令的DataTable中返回JSON对象:
以下是一个示例代码:
using System;
using System.Data;
using System.Data.SqlClient;
using System.Text.Json;
public class Program
{
public static string GetJsonFromDataTable()
{
string connectionString = "your_connection_string";
string sqlQuery = "SELECT * FROM your_table";
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
using (SqlCommand command = new SqlCommand(sqlQuery, connection))
{
using (SqlDataAdapter adapter = new SqlDataAdapter(command))
{
DataTable dataTable = new DataTable();
adapter.Fill(dataTable);
string json = JsonSerializer.Serialize(dataTable);
return json;
}
}
}
}
public static void Main(string[] args)
{
string jsonResult = GetJsonFromDataTable();
Console.WriteLine(jsonResult);
}
}
请注意,上述示例中的"your_connection_string"和"your_table"需要替换为你自己的连接字符串和表名。
这种方法可以将DataTable对象转换为JSON字符串,并返回给调用方。你可以根据需要进一步处理JSON字符串,例如将其写入文件或通过网络传输。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云