At point (3) in my code I have defined a query called query1 in which I defined a .Where lambda expression. This query is in some way dynamic but still contains static elements, it always refers to the Type Employee and its (int) property ClientID. ...Now...
I am attempting to build a simple Where clause....This is the code that does not work:...EDIT... this code works fine now (thanks to answers below)....public class Item
{
public int Value { get; set; }
public string Name { get; set; }
}
var _List...