sql语句-linq语言-lambda表达式对照

一、 查询Student表中的全部记录的Sname、Ssex和Class列。 select sname,ssex,class from student Linq:     from s in Students     select new {         s.SNAME,         s.SSEX,         s.CLASS     } Lambda:     Students.Se
相关文章
相关标签/搜索