All Questions
1 question
2
votes
1
answer
686
views
SQLite recursive query to get first branch of tree
I'm building a Xamarin.Forms application. I have a table in my SQLite database that holds hierarchical data in a tree shape. Let's call it TreeNode:
public class TreeNode
{
[PrimaryKey]
...