我無法添加變量我通過sql查詢填充到列表。無法將表單'System.Data.Entity.Infrastructure.DbRawSQLQuery <System.Collections.Generic.IEnumerable <long>'轉換爲'長'
List<long> TillsTotal = new List<long>();
string tillquery = string.Format("select Sum(Value) from valuemetrics where custid='{0} '
and metricname={1} ' and date>='{2}' and date<='{3}' and tillno={4}",
Cust, Metric, FromDate , ToDate, till);
var tillValue = item.Database.SqlQuery<IEnumerable<long>>(tillquery);
TillsTotal.Add(tillValue);
我得到的錯誤
不能在這裏我想結果添加到列表中
注意最後一行轉換形式
System.Data.Entity.Infrastructure.DbRawSQLQuery<System.Collections.Generic.Ienumerable<long>
到long
:我正在運行的查詢返回一個數字的單個值