GridView1.DataSource = dataContext.Customers.Where(p => p.City.Length > 2 && p.CompanyName.Length > 5).First(); 我想将查询出来的第一条数据绑定到GridView上,这样写不对,因为获得不了相关接口。请问该如何在一句内实现绑定?
GridView1.DataSource = dataContext.Customers.Where(p => p.City.Length > 2 && p.CompanyName.Length > 5).Take(1);