gpt4 book ai didi

c# - 如何使用 C# MVC4 将 SQL Server 数据列表转换为结构化的 JSON 对象

转载 作者:太空宇宙 更新时间:2023-11-03 13:27:53 25 4
gpt4 key购买 nike

我正在开发一个 MVC 应用程序,它从 SQL Server 中的多个表中检索数据。该查询为我构建了一个结构化的分层 JSON 文件,我将其嵌入到我的 d3.js TreeView 文件中。这在原型(prototype)级别对我来说非常有用。现在我需要在 C# 中动态构建 JSON 并将其传递给 View 以使用。
我需要帮助构建 C# 逻辑以将数据转换为结构化 JSON 对象。我已查看这篇文章,但仍需要帮助 Converting flattened hierarchical data from SQL Server into a structured JSON object with C#/Linq .

这是一个工作演示的 JSfiddle.net 链接 http://jsfiddle.net/hoopkjaz/d5Azm/ - 它具有嵌入式 JSON,我的问题是从第 229 行开始。

如您所见,JSON 最多可以有 10 个子级。我在这里使用的 JSON 是有史以来最大的。

这是创建 JSON 的 tsql

set nocount on

declare
@sponsors table
(num int,
id int)

declare
@customer_id int,
@sponsor_id int,
@sponsor_num int,
@last_sponsor_id int,
@last_customer_id int,
@new_sponsor int,
@tmp_num int,
@tmp_id int,
@json_text nvarchar(400);

declare data_cursor cursor for
with cte (customerid,
thepath) as (
SELECT customerid,
convert(varbinary(max), customerid) as thepath
FROM customers
where customerid = 10013
union all
SELECT a.customerid,
c.thepath + convert(varbinary(max), a.customerid) as thepath
FROM customers a
inner join cte c on
a.sponsorid = c.customerid)
select cus.customerid,
cus.sponsorid,
'{"ID": "' + convert(varchar(10),cus.customerid) + '",' +
'"name": "' + 'cus.firstname ' + ' ' + 'cus.lastname' + '",' +
'"fname": "' + cus.firstname + '",' +
'"type": "' + case cus.customertypeid when 1 then 'C' else 'MP' end + '",' +
'"phone": "' + '602-555-1212' + '",' +
'"email": "' + 'dev@gmail.com' + '",' +
'"paidranktxt": "' + isnull(pr.rankdescription,'') + '",' +
'"ranktxt": "' + isnull(r.rankdescription,'') + '",' +
'"PQV": "' + convert(varchar(10),isnull(pv.volume3,0)) + '",' +
'"GQV": "' + convert(varchar(10),isnull(pv.volume5,0)) + '"' as json
from cte
inner join customers cus
on cte.customerid = cus.customerid
and cus.customerstatusid <> 0
inner join periods per
on per.periodtypeid = 1
and per.periodid =
(select max(pv.periodid)
from periodvolumes pv
where pv.periodtypeid = 1)
left join periodvolumes pv
on pv.customerid = cus.customerid
and per.periodid = pv.periodid
and per.periodtypeid = pv.periodtypeid
left join ranks pr
on pv.paidrankid = pr.rankid
left join ranks r
on pv.rankid = r.rankid
order by cte.thepath;

declare sponsor_cursor cursor for
select num, id
from @sponsors
order by num desc;

open data_cursor

fetch next from data_cursor
into @customer_id,
@sponsor_id,
@json_text

set @last_customer_id = 0;
set @last_sponsor_id = 0;
set @sponsor_num = 0;

while @@fetch_status = 0
begin
set @new_sponsor = 0;

if @last_customer_id = @sponsor_id
begin
print ', "children": ['
set @sponsor_num = @sponsor_num + 1
--print 'Insert: ' + convert(varchar(10),@sponsor_num) + ' ' + convert(varchar(10),@last_customer_id)
insert into @sponsors (num, id)
select @sponsor_num, @last_customer_id
end
else if @last_sponsor_id = @sponsor_id
print '},'

else if @last_customer_id > 0
begin
print '}'

open sponsor_cursor

fetch next from sponsor_cursor
into @tmp_num,
@tmp_id

while @@fetch_status = 0
begin
--print 'Number: ' + convert(varchar(10),@tmp_num)
--print 'ID: ' + convert(varchar(10),@tmp_id)

if @sponsor_id = @tmp_id
begin
print ','
set @new_sponsor = @tmp_num
break
end
else
begin
set @sponsor_num = @sponsor_num - 1
print '] }'
end

fetch next from sponsor_cursor
into @tmp_num,
@tmp_id
end
close sponsor_cursor;
end

if @new_sponsor > 0
delete from @sponsors where num > @new_sponsor

--print 'Sponsor: ' + convert(varchar(10),@sponsor_id)
print @json_text

set @last_customer_id = @customer_id;
set @last_sponsor_id = @sponsor_id;

fetch next from data_cursor
into @customer_id,
@sponsor_id,
@json_text
end

close data_cursor;

deallocate data_cursor;

begin
print '}'

open sponsor_cursor

fetch next from sponsor_cursor
into @tmp_num,
@tmp_id

if @@fetch_status <> 0
print '] }'

while @@fetch_status = 0
begin
if @sponsor_id = @tmp_id
begin
print '] }'
set @new_sponsor = @tmp_num
break
end
else
begin
set @sponsor_num = @sponsor_num - 1
print '] }'
end

fetch next from sponsor_cursor
into @tmp_num,
@tmp_id
end
close sponsor_cursor;
end

这是应该保存列表的类

public class Node
{
public Node() {
Children = new List<Node>();
}

public int ID { get; set; }
public string Name { get; set; }
public string Fname { get; set; }
public string Type { get; set; }
public string Phone { get; set; }
public string Email { get; set; }
public string Paidranktxt { get; set; }
public string Ranktxt { get; set; }
public string PQV { get; set; }
public string GQV { get; set; }
public List<Node> Children { get; set; }
}

这是我用来从 SQL 中提取列表的方法

 public static IEnumerable<Node> GetNode(int? customerId)
{
try
{

const string query = @" SQL from above goes here";

var jsonResult = TransactionManager.Current.Entities.Database.SqlQuery<Node>(query,new SqlParameter("CustomerID", customerId));
return jsonResult;
}
catch (Exception e)
{
// log the error in Elmah
e.LogToElmah();
return null;
}

这里是格式化前的 SQL 示例。我们使用sponsorid来确定 child

ID  sponsorid name  fname   type phone        email    paidranktxt ranktxt  PQV GQV
10013 10000 first Brian MP 602-555-1234 d@m.com TLeader TL 0.00 13740.00
10624 10013 first Brian MP 602-555-1234 d@m.com TLeader TL 0.00 13740.00
10975 10624 first Brian MP 602-555-1234 d@m.com TLeader TL 0.00 13740.00

最佳答案

好的,如果我理解正确的话,您将停止使用 t-sql 代码生成 JSON,而是希望使用 C# 将 Node 对象的层次结构转换为 JSON。

假设这是正确的,我的建议是简单地使用 JSON.Net ,并且如果您使用的是 WebAPI(例如,您将在异步请求中使用 javascript 获取数据),那么这将非常简单,就像拥有一个具有如下操作的 Controller 一样:

[System.Web.Http.HttpGet]
public IEnumerable<Node> GetNodes() {
IEnumerable<Node> nodes;
...
// code to get Nodes from DB goes here
...

return nodes;
}

要将 JSON.Net 配置为在 WebAPI 中使用,您的 Global.asax 中的类似内容将起作用:

var config = GlobalConfiguration.Configuration;
var index = config.Formatters.IndexOf(config.Formatters.JsonFormatter);
config.Formatters[index] = new JsonMediaTypeFormatter
{
SerializerSettings = new JsonSerializerSettings
{
//ContractResolver = new CamelCasePropertyNamesContractResolver(),
DateTimeZoneHandling = DateTimeZoneHandling.Local
}
};

最后将平面数据结构转换为分层结构:

class Program
{
public class Node
{
public Node()
{
Children = new List<Node>();
}

public int ID { get; set; }
public List<Node> Children { get; set; }
}

public class NhNode
{
public int ID { get; set; }
public int SponsorId { get; set; }
}

static Node ConvertToHierarchy(NhNode nhnode, IEnumerable<NhNode> nodes)
{
var node = new Node()
{
ID = nhnode.ID
};

foreach (var item in nodes.Where(p => p.SponsorId == nhnode.ID))
{
node.Children.Add(ConvertToHierarchy(item, nodes));
}

return node;
}

static void Main(string[] args)
{
List<NhNode> nhnodes = new List<NhNode>() {
new NhNode() { ID = 10013, SponsorId = 10000 },
new NhNode() { ID = 10624, SponsorId = 10013 },
new NhNode() { ID = 10975, SponsorId = 10624 }
};

var node = ConvertToHierarchy(nhnodes.First(p => p.SponsorId == 10000), nhnodes);
}
}

关于c# - 如何使用 C# MVC4 将 SQL Server 数据列表转换为结构化的 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21713581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com