Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8707213
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:48:55+00:00 2026-06-13T03:48:55+00:00

I have following tables tasks id | name | proj_id 1 | task1 |

  • 0

I have following tables

tasks  
id | name   | proj_id  
1  | task1  | 1  
2  | task2  | 1  
3  | task3  | 1  


projects  
id | name  
1  | sample proj1  
2  | demo project  

budget_versions  
id | version_name| proj_id  
1  | 50          | 1  

budgets  
id | cost  | budget_version_id | task_id  
1  | 3000  | 1                 | 2  
2  | 5000  | 1                 | 1  

I need to join these tables to get a result as below using entity framework

task_id | task_name | project_id | budget_version | budget_id | cost   
1       | task1     | 1          | 1              | 2         |5000  
2       | task2     | 1          | 1              | 1         |3000  
3       | task3     | 1          | NULL           | NULL      |NULL   
select tsk.id,tsk.name, tsk.project_id, bgtver.id, bgt.id, bgt.cost 
from TASK tsk
left outer join BUDGET_VERSIONS bgtver
on tsk.project_id= bgtver.project_id
left outer join BUDGETS bgt
on bgtver.id = bgt.budget_version_id  and tsk.id = bgt.task_id
where bgtver.id = 1

This is what I have tried so far

var budgetlists = _worker.Budgets.Get().GroupJoin(
    _worker.BudgetVersions.Get(),
    rb => rb.budget_version_id, 
    rbv => rbv.id,
    (rb, rbrbv) => new {rb, rbrbv}
).SelectMany(
    @t => @t.rbrbv.DefaultIfEmpty()
).GroupJoin(
    _worker.Tasks.Get(), 
    rbrbv => rbrbv.id, 
    tsk => tsk.id,
    (rbrbv, tskrb) => new {rbrbv, tskrb}
).SelectMany(
    @p => @p.tskrb.DefaultIfEmpty());
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T03:48:56+00:00Added an answer on June 13, 2026 at 3:48 am

    This should work:

    var result = from tsk in tasks
                    join bv in budget_versions on tsk.proj_id equals bv.proj_id into g1
                    from bgtver in g1.DefaultIfEmpty()
                    join b in budgets on new { bgtver_id = bgtver.id, tsk.id } equals new { bgtver_id = b.budget_version_id, id = b.task_id } into g2
                    from bgt in g2.DefaultIfEmpty()
                    select new Result 
                    { 
                        task_id = tsk.id, 
                        task_name = tsk.name, 
                        project_id = tsk.proj_id, 
                        budget_version = bgtver.id, 
                        budget_id = bgt == null ? (int?)null : bgt.id, 
                        cost = bgt == null ? (int?)null : bgt.cost 
                    };
    

    Here‘s how you do left outer joins in LINQ.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following tables: users +----------+----------+----------+ | id | name | dob |
I have the following tables in SQL Server 2005 ReceiptPoint: ID (PK), Name GasIndexLocation:
I have the following 3 classes(mapped to sql tables). Places table: Name(key) Address Capacity
I have following tables questions -> id, question_data, user_id users -> id, fname, lname
Suppose that we have following tables create table Employee( 2 EMPNO NUMBER(3), 3 ENAME
I have the following tables in my database: Products ID_PRODUCT PRODUCTNAME PRICE Customers ID_CUSTOMER
I have the following tables. I want to run a query but I think
I have the following tables. I wanted it so when I make more boxes
i have the following tables in sql server: photoalbumsTable: album_ID album_caption albumtagmap id album_id
I have the following tables, with these keys in my database: bookings session_id sessions

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.