我正在使用 Linq to Sql 查询数据库。这是我的数据:
Name LastName Age
------------------------------
1 Abc Def 15
2 Abc Def 17
3 xyz wss 17
我的 Linq to Sql 代码是:
Context _context = new Context("Conn_String");
var table = _context.GetTable<Person>();
List<Person> persons = table.Where<Person>(p => p.Name == "Abc" && p.LastName == "Def").ToList<Person>();
根据我的理解,这个查询应该返回 2 条记录。即记录 1 和记录 2。但它返回记录 1 两次。如果它是 Linq to Sql 中的错误或我做错了什么,你能告诉我吗?
编辑:
这是我的 DAL 代码:
public List<T> GetList<T>(Expression<Func<T, bool>> predicate) where T : class
{
try
{
Context _context = new Context("Conn_String");
var table = _context.GetTable<T>();
return table.Where<T>(predicate).ToList<T>();
}
catch (Exception ex)
{
throw ex;
}
}
我将此方法称为:
List<Person> person = DAL.GetList<Person>(p => p.Name == "Abc" && p.LastName == "Def");
foreach(var Person in persons )
{
// Print(person.Age);
}