我定義了一個List
這樣的:的列表<T>。新增(T)的最佳重載的方法匹配具有一些無效參數
List<Agahii.Ads> ads = new List<Agahii.Ads>();
然後,我想用一個LINQ查詢的結果來填充它:
for (int i = 0; i < adid.Count(); i ++)
{
var dd = adid[i];
var cc = (from a in context.Ads where a.AdID == dd select a).ToList();
ads.Add(cc); // error appears here
};
錯誤出現在ads.Add(cc);
行。
error: the best overloaded method match for System.Collections.Generic.List.Add(Agahii.Ads) has some Invalid arguments