Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / C# 5.0
Tip/Trick

Case Sensitive Comparison of Datatables using LINQ

Rate me:
Please Sign up or sign in to vote.
1.00/5 (1 vote)
22 Mar 2015CPOL2 min read 12K   3  
In this tip, we will see how to perform case sensitive comparison of datatables using LINQ

Introduction

In this tip, we will see how to perform case sensitive comparison of datatables.

Background

In my project, there came a situation where it is needed to perform Case Sensitive comparison of columns between datatables. I am sharing my learnings here.

Using the Code

I am going to have data in two datatables. Let's call one datatable as Source and the other as Target.

I will be using Windows Forms application for this demo. I created a form with 5 data gridviews and each show:

  1. displays data from source datatable
  2. displays data from second datatable
  3. displays matching source rows from Case-Insensitive comparison between source and target
  4. displays matching source row from Case-Sensitive comparison between source and target and
  5. displays mismatching source row from Case-Sensitive comparison between source and target

I made it in such a way that when the form is loaded initially, it will display the data from source and target. If we see the loaded data, all columns are the same except for Street of second row. Source has "TestStreet2" and Target has "TESTStreet2". TEST is all caps in Target.

Image 1

Comparison will be performed and results will be displayed when "Compare and Display Result" button is clicked. Before seeing the screenshot with results, let's see what will be the possible result.

Case-Insensitive comparison should return both source records, Case-Sensitive comparison should return only the first record from source and Case-Sensitive mismatch should return only the second record from source.

Now let's look at the screenshots.

Image 2

I found the LINQ query for column by column comparison from the below article:

It is needed to specify the columns to be compared. In this example, I am comparing all the columns. The below code will perform case insensitive comparison of columns.

C++
List<string> columnsToCompare = new List<string>() { "FirstName", "LastName", "Street", "City" };
dtSource.PrimaryKey = columnsToCompare.Select(x => dtSource.Columns[x]).ToArray();
dtTarget.PrimaryKey = columnsToCompare.Select(y => dtTarget.Columns[y]).ToArray();

var matchingRows = from DataRow rowFile in dtSource.Rows
where dtTarget.Rows.Contains(rowFile.ItemArray.Where(
	(a, b) => columnsToCompare.Contains(dtSource.Columns[b].ColumnName)).ToArray())
select rowFile;

dtSource.CaseSensitive = true;
dtTarget.CaseSensitive = true;

columnsToCompare is a list of strings which contains the columns to be compared. If you do not want any column to be compared, just remove it from the list.

The next two lines set the Primary key(s) for the tables. But these are not actual primary keys but columns to be compared. I had my share of confusion before trying this out myself.

In order to perform case sensitive comparison, the main part of this article, we have to set the case sensitivity of the datatables to true. The below code does the trick.

C++
dtSource.CaseSensitive = true;
dtTarget.CaseSensitive = true;

Run the code to compare after this.

C++
var matchingRows = from DataRow rowFile in dtSource.Rows
where dtTarget.Rows.Contains(rowFile.ItemArray.Where(
	(a, b) => columnsToCompare.Contains(dtSource.Columns[b].ColumnName)).ToArray())
select rowFile;

Points of Interest

In this method of performing the comparison, the order of the columns in source and target must match to get the desired result. This method will not support NULL values in columns. Null reference exception will be thrown.

I did not add the LINQ query for finding the mismatching rows. I leave it for you to figure out.

History

  • First version - 03/21/2015

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --