var query = from p Tables1.AsEnumerable() //查找分类id为1且价格大于10.0的产品 where p.Field("分类id")==1 && p.Field("Price")> 10.0 selectp;