我想用 linq 从数据库中选择不同的名字列,
我的班级是:
public partial class user
{
public string firstName{ get; set; }
public string lastName{ get; set; }
public int dgree{ get; set; }
public string class{ get; set; }
}
我使用下面的代码,但返回完整列表。
var query = (from user _db.Users
select user).Distinct().OrderBy(u=>u.firstName).ToList();