实例 Code 查询Student表的所有记录。 select * from student Linq: from s in Students select s Lambda: Students.Select( s => s)