I have a problem with the following code which should work, according to this MSDN Forums post.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace LINQTest
{
class Program
{
class Schedule
{
public int empid { get; set; }
public int hours { get; set; }
public DateTime date { get; set; }
public DateTime weekending { get; set; }
}
static void Main(string[] args)
{
List<Schedule> Schedules = new List<Schedule>();
var bla = from s in Schedules
group s by new { s.empid, s.weekending} into g
select new { g.Key.empid, g.Key.weekending, g.Sum(s=>s.hours)};
}
}
}
I'm getting the error with the sum function:
Invalid anonymous type member declarator. Anonymous type members must be declared with a member assignment, simple name or member access.
What's wrong?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…