Click here to Skip to main content
15,906,097 members

Comments by gazmendmehmeti (Top 2 by date)

gazmendmehmeti 28-Dec-11 14:31pm View    
Have you tried to install CRRedist2008_x86 which is located in the folder: CrystalReports10_5 \ CRRedist2008_x86!?

THANKS!
G.M.
gazmendmehmeti 28-Dec-11 14:13pm View    
Deleted
You can do it in this way:
var ReportData = from a in context.Table1
from b in context.Table2
where a.personelID == b.ID
&& a.DateField.Value.Year == 2011
group a by new { a.personelID, b.Name, b.Surname} into grouping
select new
{
// grouping.Key.DateField,
DateField = grouping.First().DateField,
Name= grouping.Key.Name,
Surname= grouping.Key.Surname,
PagaBruto = grouping.Sum(i => i.Bruto))
};
THANKS!
G.M.