次のレコード タイプがあるとします。
open System.Collections.Generic
type Store =
{
Products: List<Product>;
}
member this.TotalNumberOfItems =
this.Products.Sum(fun p -> p.NumberInInventory)
上記の方法のように、ストア内のアイテムの合計数を合計したいのですが、System.Collections.Generic.List 拡張メソッドは使用できないようです。Intellisense はそれらを表示しません。F# から Sum を呼び出すにはどうすればよいですか?