This is my oracle query
select 0 subcatg_cd, 'all' subcatg_name from dual
union
select subcatg_cd,subcatg_name from datacontext.subcatg_mst
order by 1
I want to insert 0 & all at index 0 of the result of second query using linq. I want to achieve it by a single query. How can it be done?
I think best option will be to query rest of the data (second sentence) and then join them on client side.
So:
then