How can I convert following SQL query to LINQ in C#?
I don't need all columns from both tables and the result set should be
IEnumerable<DataRow>
Query:
select
c.level, cl.name, c.quantity
from
dbo.vw_categories c
left join
dbo.vw_categoriesLocalization cl on c.level = cl.level
and cl.language = 'en'
where
c.level like '000%'
and c.level <> '000';
Expected:
IEnumerable<DataRow> result = ????
Thanks in advance..