Pregunta

What is the way to code this query with Linq to Entities (method based syntax)?

select sum(ceiling((PackSize)/50)) from table1;

Thanks

¿Fue útil?

Solución

var query = context.Table1.Sum(x => Math.Ceiling(x.PackSize/50));
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top