Due to wierd request from a Customer, I have managed to figure out how to implement it
using SQL query, but I couldn’t translate it into LinQ.
SELECT (SELECT count(*) FROM table1 where attribute1 like 'value1'),
(SELECT count(*) FROM table2 where attribute2 like 'value2')
What the translation of the query to LinQ?
You could just supply a predicate to the
Count()function