【发布时间】:2014-02-11 21:38:13
【问题描述】:
我正在开发一个 MVC 应用程序,它从 SQL Server 中的多个表中检索数据。该查询为我构建了一个结构化的分层 JSON 文件,我将其嵌入到我的 d3.js 树视图文件中。
在原型级别上,这一切对我来说都很好。现在我需要在 C# 中动态构建 JSON 并将其传递给视图以使用。
我需要帮助构建 C# 逻辑以将数据转换为结构化 JSON 对象。
我已经查看了这篇文章,但仍然需要帮助Converting flattened hierarchical data from SQL Server into a structured JSON object with C#/Linq。
这是一个工作演示 http://jsfiddle.net/hoopkjaz/d5Azm/ 的 JSfiddle.net 的链接 - 它包含我的问题是关于从第 229 行开始的嵌入式 JSON。
如您所见,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 示例。我们使用赞助商来确定孩子
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
【问题讨论】:
-
感谢您的回复。我可能问错了,因为这是我第一次。我实际上已经关闭了 TSQL。我的问题是在 C# 中执行相同的逻辑并将其作为 JSON 对象传递给我的 mvc 视图。
标签: c# json tsql asp.net-mvc-4