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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:28:46+00:00 2026-06-15T09:28:46+00:00

I have two datatables with same identity column. I want to update one column

  • 0

I have two datatables with same identity column. I want to update one column value in one table with other column value in another table. For example:

These are the two tables:

Table1:

       ID         Name           Amount
     ------      -------        ---------
        1          AA             0
        2          BB             0
        3          CC             0

Table2:

       ID        Amount
     ------    ---------
        1        5000
        2        6000
        3        7000            

My desired datatable should like this:

DesiredTable:

       ID         Name           Amount
     ------      -------        ---------
        1          AA             5000
        2          BB             6000
        3          CC             7000

I don’t want to use for loop. How to achieve this result using LINQ?

  • 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-15T09:28:48+00:00Added an answer on June 15, 2026 at 9:28 am

    Here Consider Table1 as ‘DTTable1’ and Table2 as DTTable2:

    DTTable1.AsEnumerable().Join(DTTable2.AsEnumerable(), 
                         dt1_Row => dt1_Row.ItemArray[0],
                         dt2_Row => dt2_Row.ItemArray[0],
                         (dt1_Row, dt2_Row) => new { dt1_Row, dt2_Row }).ToList() 
                         .ForEach(o => o.dt1_Row.SetField(2, o.dt2_Row.ItemArray[1]));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two datatables. One is to display names. Another contains three <h:selectOneMenu> .
I am stuck with an issue. I have two datatables, with the same table
Suppose I have 5 table schemas in memory as DataTables and one other DataTable
i have two data tables with the same structure the first one has one
I have two simple interfaces. One accepts sql query the other is popup which
I have two DataTables. I want to do inner join them into a new
i have two DataTables one with a hughe List of Results and one with
I have a page with two dataTables. One of them is populated with data
I have two methods that do the same thing. The first one makes performance
Similar to these other questions noted below, I have two tables with the structure:

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.