摘要: 基本语法var result = from item in container orderby value ascending/descending select item;1、获取全部记录var allCars = from c in myCars select c;(提取指定行记录)var allCars = (from c in myCars select c).Take<myC... 阅读全文
posted @ 2010-08-13 12:10 宝石蓝 阅读(575) 评论(0) 推荐(1) 编辑