雖然這樣一個無法根據用法推斷方法「'的類型參數。嘗試顯式指定類型參數
IEnumerable<Colors> c = db.Products.Where(t => t.ProductID == p.ProductID).SelectMany(s => s.Colors);
if (c.Any()) sp.color = Constructor(c);
,後來
private string Constructor<T>(List<T> list)
{
//Do something
}
我得到的錯誤
類型參數的方法 「Controller.Constructor( System.Collections.Generic.List)'不能從使用推斷出 。嘗試明確指定類型參數 。
當然這是不正確的。但是我錯過了什麼?