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
相關文章
相關標籤/搜索