实例 Code 查询Student表的所有记录。 select * from student Linq: from s in Students select s Lambda: Students.Select( s => s)
sql,lambda,linq语句
原文:http://www.cnblogs.com/xiaosongbiog/p/6791382.html