摘要: 1、查询Student表中的所有记录的Sname、Ssex和Class列。 SQL:select sname,ssex,class from Students linq:from s in Students select new{s.sname,s.ssex,s.class} lambda:Stud 阅读全文
posted @ 2016-03-07 16:30 怪咖Eric 阅读(780) 评论(0) 推荐(0) 编辑