Convert SQL to LINQ JOIN/GROUP BY/COUNT/DISTINCT?

How's this: var result = db. C . Where(c => c.i.

Select(i => i. AttributeX).Distinct().Count() > c.l. Select(l => l.

AttributeY).Distinct().Count() ) . Select(c => c. Id) or alternatively var result = db.

C . Where(c => c.i. GroupBy(i => i.

AttributeX).Count() > c.l. GroupBy(l => l. AttributeY).Count() ) .

Select(c => c. Id).

How's this: var result = db. C . Where(c => c.i.

Select(i => i. AttributeX).Distinct().Count() > c.l. Select(l => l.

AttributeY).Distinct().Count() ) . Select(c => c. Id); or alternatively var result = db.

C . Where(c => c.i. GroupBy(i => i.

AttributeX).Count() > c.l. GroupBy(l => l. AttributeY).Count() ) .

Select(c => c. Id).

Worked fine. Thanks a ton! I was suspecting that a lambda expression would be the solutions.

I was trying to do it with SQL-like query syntax. – Vasco May 25 at 7:47.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions