摘要:
转一、Linq有两种语法:1、 方法语法2、 查询语法下面举个例子看看这两种方法的区别比如现在有一个学生类public class student{ public string username { get; set; } public int age { get; set; } public string sex { get; set; }}我们通过一个方法来添加很多同学public IList GetStu(int n) { IList stuList = new List(); for (int i = 0; i new { user... 阅读全文