私はいくつかのC#3コレクションフィルターのプロトタイプを作成していて、これに出くわしました。私は製品のコレクションを持っています:
public class MyProduct
{
public string Name { get; set; }
public Double Price { get; set; }
public string Description { get; set; }
}
var MyProducts = new List<MyProduct>
{
new MyProduct
{
Name = "Surfboard",
Price = 144.99,
Description = "Most important thing you will ever own."
},
new MyProduct
{
Name = "Leash",
Price = 29.28,
Description = "Keep important things close to you."
}
,
new MyProduct
{
Name = "Sun Screen",
Price = 15.88,
Description = "1000 SPF! Who Could ask for more?"
}
};
ここで、LINQを使用してフィルター処理すると、期待どおりに機能します。
var d = (from mp in MyProducts
where mp.Price < 50d
select mp);
また、Where拡張メソッドをLambdaと組み合わせて使用すると、フィルターも機能します。
var f = MyProducts.Where(mp => mp.Price < 50d).ToList();
質問:違いは何ですか、そしてなぜ一方を他方の上に使用するのですか?