예제 #1
0
        public string GetFullPath(QueryRelationNode node)
        {
            if (node.Parent == null)
            {
                return("");
            }
            var fPath = GetFullPath(node.Parent);

            return(string.IsNullOrEmpty(fPath) ? node.Path : String.Format("{0}.{1}", fPath, node.Path));
        }
 public QueryRelationTree()
 {
     Node = new QueryRelationNode();
 }