I was messing around with Lambda expressions tonight(yea, I know, I was bored). Here are a couple example uses with Nettiers (one using Find, another Filter). Nettiers excepts delegates on several methods, so you can use the Lambda expressions in its place.
It's a little shorter than putting delegate(Customers x) { return x.Name == "Munster"; }
jeff
1: TList<Customers> custList = DataRepository.CustomersProvider.GetAll();
2:
3: Customers findCust = custList.Find(x => x.City == "Münster");
4:
5: custList.ApplyFilter(x => x.City == "Münster");
----------------------------------------------------------------------
Member of the .NetTiers team | Visit http://www.nettiers.com
----------------------------------------------------------------------