Click here to Skip to main content
Sign Up to vote bad
good
i have this entity framework code:
 
repository.GetObjectQuery(Of COUNL1)().Where(Function(a) a.CDATE >= "2012/01/01" And a.CDATE <= "2012/12/01" And COID = 88 ).GroupBy(Function(m) m.CDATE).Select(Function(n) New PointXY With {.Y = n.Sum(Function(k) k.TOTALVH), .X = n.First().CDATE}).ToList
this error accoured:
Only parameterless constructors and initializers are supported in LINQ to Entities.
 
description:
i want group by CDATE and sum of TOTALVH and put it in PointXY Class Like this
PointXY {.Y = Sum(TOTALVH), .X = CDATE})

sql Query :
    SELECT        SUM(TOTALVH) AS EXPR1, CDATE
    FROM            COUNL1
    WHERE        (CDATE >= '2012/01/01') AND (CDATE <= '2012/12/01') AND   (COID  = 88)
    GROUP BY CDATE
 
please help me,thanks all.
Posted 5 Oct '12 - 22:39


This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 355
1 Arun Vasu 345
2 Sergey Alexandrovich Kryukov 338
3 Maciej Los 208
4 Zoltán Zörgő 189
0 Sergey Alexandrovich Kryukov 9,755
1 OriginalGriff 7,559
2 CPallini 4,018
3 Rohan Leuva 3,362
4 Maciej Los 2,951


Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 6 Oct 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid