Link to home
Start Free TrialLog in
Avatar of wpeterb
wpeterb

asked on

C#/LINQ

I have the following query and I need to know how to convert it to linq:

select c.video_Name, a.detail_id, a.video_version, nvl(b.min_assets,4) min_assets, nvl(b.max_assets,1000) max_assets
from video_detail a,
        video_stage b,
        video c
where a.detail_id = :Vdetail_id
and a.status = 'A'
and c.video_id = a.video_id
and a.video_id = b.video_id


Thank you!
ASKER CERTIFIED SOLUTION
Avatar of Ioannis Paraskevopoulos
Ioannis Paraskevopoulos
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial