LINQ クエリの結果を double 配列に設定する必要があります。次のステートメントを実行した後、匿名型を取得し、配列を double 型に変換できません。どうやってやるの?コード:
var rls = context.Test
.GroupBy(cont => new
{
wd = System.Data.Objects.SqlClient.SqlFunctions.DatePart("weekday", cont.datetime),
hh = System.Data.Objects.SqlClient.SqlFunctions.DatePart("hour", cont.datetime)
})
.Select(rs => new
{
rs.Key.wd,
rs.Key.hh,
count = rs.Count()
}).Where(rs => rs.hh != null & rs.wd !=null).ToArray();
前もって感謝します。