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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:08:52+00:00 2026-05-31T05:08:52+00:00

Im trying to use a loop to cycle through an array, and in each

  • 0

Im trying to use a loop to cycle through an array, and in each iteration perform a LINQ query using the arrays value in the queries where clause.

What I then want to do is append these results successively together and then return the results as a DataTable.

How can I append the results together? I have tried the DataTable .Merge() method, but receive an error (“Cannot implicitly convert type void to DataTable”), and cannot work out how to append the queries results due to generic type scoping problems.

EDIT: The code… (or at least one of the versions I have tried so far)

    DataTable results = new DataTable();

    foreach (string toFind in searchString)
    {

        DataTable toMerge = new DataTable();

        var searchResults = from a in dt.AsEnumerable()
                            where a.Field<string>("A").ToUpper().Contains(toFind.ToUpper())
                            select new
                            {
                                A= a.Field<Int32>("A"),
                                B= a.Field<string>("B"),
                                C= a.Field<string>("C"),
                            };

        toMerge = ConvertDataTable.FromLINQ(searchResults.AsQueryable()); // Method I have to convert the LINQ query to a DataTable

        results = results.Merge(toMerge);

    }

Any ideas?

Thanks in advance

Chris

  • 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-05-31T05:08:53+00:00Added an answer on May 31, 2026 at 5:08 am

    You just need do results.Merge(toMerge); you shouldn’t do results = results.Merge(toMerge);. Because Merg function acts on caller DataTable, and doesn’t return anything.

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

Sidebar

Related Questions

I'm trying to use Linq to loop through all fonts in the %windir%\Fonts folder
I'm trying to use jQuery's each loop to go through this JSON and add
I'm trying to use a foreach loop for an array of objects. Inside of
I'm trying to use openmp to multithread a loop through std::set. When I write
I am trying to use a while loop to loop through some data and
I'm trying to use LayoutInflater in a loop, but each time one of these
I have an array of 28 characters. I'm trying to use a for loop
I'm trying to use JQuery to loop through several div's with more than one
I am trying to use a .each loop to find specific elements in a
when trying to use a loop to create a jagged array, but what happens

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.