我已經寫了下面問題在使用LINQ(C#3.0)
return (from p in returnObject.Portfolios.ToList()
from childData in p.ChildData.ToList()
from retuns in p.Returns.ToList()
select new Dictionary<DateTime, double>()
{ p.EndDate, retuns.Value }
).ToDictionary<DateTime,double>();
獲取錯誤
否過載對方法 '添加' 取「1 「論據
當我作出錯誤
我使用C#3.0
感謝