摘要:
例如:找ProductType表 下ID为1的分类的所有子级 with result as --result为别名( select * from TB_ProductType where Id=1 --查询ID为1 的数据union all select TB_ProductType.* from 阅读全文
摘要:
1 public class PP 2 { 3 public string a { get; set; } 4 public string b { get; set; } 5 public string c { get; set; } 6 } 7 class Program 8 { 9 ... 阅读全文