context.Employees.Where(p=>p.Address.City == "上海").SingleOrDefault();

查找满足条件的记录集合中的第一条,不存在返回默认值null。


context.Employees.Count(); // 表中记录的总数量
context.Employees.Count(e=>e.Salary >= 10,000)

统计满足某个条件的记录的数目,空参数表示统计表中所有记录的总量


bool exist = context.Employees.Any(e=>e.first_name == "Jack");

判断数据库中是否有满足某个条件的记录,返回true或false。