Top "Hierarchical-data" questions

Hierarchical data reflects a set of parent-child relationships.

Expressing recursion in LINQ

I am writing a LINQ provider to a hierarchal data source. I find it easiest to design my API by …

c# .net linq recursion hierarchical-data
WPF Treeview Databinding Hierarchal Data with mixed types

I have a bit of a complex situation with WPF Treeview Binding. I have spent the last 2 days trying Google …

wpf treeview binding hierarchical-data hierarchicaldatatemplate
Hierarchical queries in MySQL

I'm trying to find all the parents, grandparents, etc. of a particular field with any depth. For example, given the …

mysql hierarchical-data
Move node in nested set

I'd need a MySQL query that moves a node and all its children within a nested set. I found this …

mysql tree hierarchical-data nested-sets
Pandas: import multiple csv files into dataframe using a loop and hierarchical indexing

I would like to read multiple CSV files (with a different number of columns) from a target directory into a …

python csv pandas hierarchical-data
(ID/ParentID) list to Hierarchical list

MyClass consists of ID ParentID and List<MyClass> as Children I have list of MyClass like this ID …

c# list linq-to-objects hierarchical-data
Oracle: Connect By Loop in user data

I understand when a loop can occur in Oracle. Theoritically it says if a record is both parent to another …

oracle hierarchy hierarchical-data
Getting all parent rows in one SQL query

I have a simple MySQL table thats contains a list of categories, level is determined by parent_id: id name …

mysql sql hierarchical-data
sql select parent child recursive in one field

I do not know how to select query recursive.. id idparent jobNO -------------------------------- 1 0 1 2 1 2 3 1 3 4 0 4 5 4 5 6 4 6 how do the results like this With …

sql sql-server hierarchical-data recursive-query
C# algorithm for generating hierarchy

I've got a text file that looks like this: { Id = 1, ParentId = 0, Position = 0, Title = "root" } { Id = 2, ParentId = 1, Position = 0, Title = "child 1" } { Id = 3, …

c# algorithm hierarchy hierarchical-data