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 9240449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:11:31+00:00 2026-06-18T08:11:31+00:00

How I will convert this SQL query in Linq, sorry but I am not

  • 0

How I will convert this SQL query in Linq, sorry but I am not that much expert in LINQ

select ConnectionId
from LearnerConnections
where LearnerId = 1
union
select LearnerId
from LearnerConnections
where ConnectionId = 1

also can I write the DataTable methode to get the result (like DataTable.Select() method)?

thanks in advance

  • 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-18T08:11:32+00:00Added an answer on June 18, 2026 at 8:11 am

    something like that

    LearnerConnections.Where(x => x.LearnerId == 1)
                      .Select(m => m.ConnectionId)
                      .Union(LearnerConnections.Where(l => l.ConnectionId ==1)
                                               .Select(lc => lc.LearnerId)
    
                      );
    

    with a datatable, it should look like

      dtLearnerConnections.AsEnumerable()
                          .Where(m => m.Field<int>("LearnerId") == 1)
                          .Select(m => m.Field<int>("ConnectionId"))
                          .Union(dtLearnerConnections.AsEnumerable()
                                                     .Where(x => x.Field<int>("ConnectionId") == 1)
                                                     .Select(x => x.Field<int>("LearnerId"))
                          );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got this method that returns a Linq-to-SQL query for all the rows in
I have functions in place that will convert the results of sql queries into
Is there a tool that will convert MS Access SQL to T-SQL?
I'm trying to convert a standard SQL query to a LINQ to SQL query.
I have a SQL query that will result in one string. Rather than bind
Consider the SQL query below: SELECT * FROM opening_hours WHERE week_day = WEEKDAY(NOW()) +
I'm having a hard time with this SQL Query. I need to convert this
This is my current SQL query. I need to modify this SELECT 18 BrokerDealerID,
I want to convert Following sql server query with Linq-to-sql query . What I
Have the following (non-straightforward) T-SQL query, which i'm trying to convert to LINQ (to

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.