Posts by Edson Benjamin • 19 points
1 post
-
-1
votes2
answers101
viewsQ: Linq equivalent to the t-sql command
How to make the LINQ equivalent to the following SQL? Select sum(case when periodo = 1 then isnull(valor,0) else 0 end) Jan, sum(case when periodo = 2 then isnull(valor,0) else 0 end) Feb, sum(case…