1

I have a SQL Server query like this:

select 
    month(fact_date) as month,
    sum(case when beef_dairy_stat = 1 and param_id = 1 then 1 else 0 end) as cnt
from 
    user_behave_fact
where 
    YEAR(fact_date) = 2018
group by 
    month(fact_date)
order by 
    month

with a result of

month   cnt
------------
  1     10
  2     20

Now I need to convert this query to its corresponding Entity Framework query.

This is my current attempt:

var sql_rez_ICC = new List<Tuple<int, int>>();

sql_rez_ICC = db.user_behave_fact
                    .Where(x => x.fact_date.Value.Year == selected_year)
                    .GroupBy(y => y.fact_date.Value.Month)
                    .Select(y =>new { month = y.Select(x=>x.fact_date.Value.Month), icc_count = y.Count(x => x.beef_dairy_stat == true && x.param_id == 1) })
                    .AsEnumerable()
                    .Select(y => new Tuple<int, int>(y.month, y.icc_count))
                    .ToList();

However on second .Select, I get an error on month which is

Cannot convert from System.Collection.Generic.IEnumrable to int

1 Answer 1

1

y.Select(x=>x.fact_date.Value.Month) returns an IEnumerable<int>. Use y.Key instead.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.