下列**不能直接使用
create table [dbo].[p_category](
[code] [varchar](36) not null primary key,
[parent_code] [varchar](36) null,
[depth] [int] null,
[name] [varchar](50) null
) go
insert [dbo].[p_category] ([code], [parent_code], [depth], [name]) values (n'101', n'1', 2, n'木門')
insert [dbo].[p_category] ([code], [parent_code], [depth], [name]) values (n'10101', n'101', 3, n'室內木門')
//下面的**這個沒試
//string json = jsonconvert.serializeobject(categorylist, formatting.indented);
//return json;
}/// /// 取得兄弟節點
///
///
///
public void categoryjson(listcategorylist, string parentcode) }}
/// /// 遞迴出子物件
父級編碼
/// [column(name = "
parent_code")]
public
string parentcode
//////
深度
/// [column(name = "
depth")]
public
int? depth
//////
分類名稱
/// [column(name = "
name")]
public
string name
//////
排序
/// [column(name = "
sequence")]
public
int? sequence
//////
狀態
/// [column(name = "
status")]
public
int? status
//////
建立時間
/// [column(name = "
create_date")]
public datetime? createdate
public listchildren }}
樹型結構遞迴 實體遞迴 JSON格式
下列 不能直接使用 create table dbo p category code varchar 36 not null primary key,parent code varchar 36 null,depth int null,name varchar 50 null go insert d...
用遞迴處理樹型結構 表結構
用遞迴處理樹型結構 表結構 遞迴求城市,從小到大的,或從大到小。等依次類推得目錄樹結構 我想寫乙個函式 傳入部門id號後 馬上得到相應的 部門結構 如 輸入8得到的是市場部 東南市場 上海市 輸入9得到的是市場部 西北市場 北京市 輸入6得到的是市場部 西北市場 輸入3得到的是市場部 輸入1得到的是...
遞迴演算法求樹型陣列
public arraylist recursivelist arraylist rootlist 遍歷父節點 for taborganizations father fatherlist return fatherlist 遞迴演算法 public arraylist getchildren ar...