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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:13:40+00:00 2026-05-27T23:13:40+00:00

Dataset1 col1 col2 —- —- 1    a 2    b 3    c Dataset2 col1 —- doctor engineer programmer

  • 0

Dataset1

col1 col2
—- —-

1    a
2    b
3    c

Dataset2

col1
—-
doctor
engineer
programmer

I want this in grid view like this

col1 col2 col3
—- —- —-
1     a    doctor
2    b    engineer
3    c    Programmer

  • 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-27T23:13:40+00:00Added an answer on May 27, 2026 at 11:13 pm

    In your case , you have no need to merge 2 DataTables

    You can use linq instead.

            var datasource = from r1 in table1.AsEnumerable().Select((r, i) => new { Value = r, Index = i })
                             from r2 in table2.AsEnumerable().Select((r, i) => new { Value = r, Index = i })
                             where r1.Index == r2.Index 
                             select new
                             {
                                 col1 = r1.Value["col1"].ToString(),
                                 col2 = r1.Value["col2"].ToString(),
                                 col3 = r2.Value["col1"].ToString(),
                             };
    

    Then , Bound it like.

    datagridview.datasource = datasource ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to do this col1 col2 col3 a 1 b a 2
Assume a table as below: X = col1 col2 col3 row1 A 0 1
I have two datasets named dataset1,dataset2. I want put the left outer join relation
I am trying to plot side by side the following datasets dataset1=data.frame(obs=runif(20,min=1,max=10)) dataset2=data.frame(obs=runif(20,min=1,max=20)) dataset3=data.frame(obs=runif(20,min=5,max=10))
I've a XML looking like this : <resultset> <datarow> <datacol>Row 1 - Col 1</datacol>
I want to wire a text box to a BindingSource . I tried this:
My dataset looks like this: `DSET<-data.frame(cbind(c(rep(V1,3),rep(V2,3),V3), c(rep(c(X1,X2,X3),2),X1), c(rep(1,7))))` `names(DSET)<-c(A,B,C)` `DSET[,3]<-c(1,-2,1,3,-1,2,-3)` With three grouping variables
[...] public DataSet ReturnPromoMagazinesDs() { MySql.Data.MySqlClient.MySqlConnection mysqlConnection = new MySql.Data.MySqlClient.MySqlConnection(this.connectionString); MySql.Data.MySqlClient.MySqlCommand mysqlCommand = new
I have a dataset that has two tables in it. I want to do
I have a DataSet consisting of XML data, I can easily output this 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.