我有一個名爲menuItems的IList集合。如何從LINQ集合中選擇?
這裏是我的MenuItem類:
public class MenuItem
{
public string PartitionKey { get; set; }
public string RowKey { get; set; }
public string Order { get; set; }
}
如何從這個集合中選擇訂單時PartitionKey = "00"
和RowKey = "20"
。我可以使用LINQ嗎?