出于某种原因,我在 Microsoft Visual Studio 2012 中通过以下代码收到错误:
students.Where(s =>
foreignStudents.Any(f =>
s.FirstName == f.FirstName &&
s.LastName == f.LastName
)
);
student
是具有各种属性的学生列表,包括FirstName
andLastName
和foreignStudents
是仅包含学生的FirstName
和的列表LastName
。我更改了变量名称,以便更容易理解问题。
它说 IEnumerable 不包含“任何”的定义,并且最好的扩展方法重载Enumerable.Any<TSource>(IEnumerable<TSource>, Func<TSource,bool>)
有一些无效的参数。
将其切换到f => true
或f => f.FirstName == "Sarah"
删除错误。
任何见解将不胜感激!
编辑:实际代码
// Retreives orders from the database using parameters from the URL
string orderQuery = "SELECT * FROM EventOrders WHERE EventID = @0 AND AccountNum = @1";
var orders = db.Query(orderQuery, Request.Form["id"], Request.Form["accountnum"]);
// Parses order IDs from the URL
// Where Order IDs are in the form: <orderNum>-<orderLine>[,...]
var orderIDs = Request.QueryString["orderids"].Split(',')
.Select(orderID => {
var components = orderID.Split('-');
return new {
OrderNum = components[0].AsInt(),
OrderLine = components[1].AsInt()
};
});
var quantityList = orders
.Where(o => orderIDs.Any(i => o.OrderNum == i.OrderNum && o.OrderLine == i.OrderLine))
.OrderByDescending(o => o.Quantity)
.Select(o => new { o.OrderNum, o.OrderLine, o.Quantity })
编辑 2: 所以我认为现在可能只是 Visual Studio 的一个问题。调试其余代码后似乎可以工作。Visual Studio 仍然用红色下划线表示错误。