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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T20:49:05+00:00 2026-05-13T20:49:05+00:00

I have to leave in a DataTable only records with dates currently not present

  • 0

I have to leave in a DataTable only records with dates currently not present in the database.

So I read all existing dates using the stored procedure (is it correct?):

SELECT DISTINCT CAST(S.[date] AS DATE) -- original date is DATETIME2(0)
FROM ...
WHERE ...

and load it to a DataTable:

var tableDate = new DataTable();
new SqlDataAdapter(command).Fill(tableDate);

How to remove now from another table all unnecessary rows? I think LINQ could help but I’m not sure how..

  • 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-13T20:49:05+00:00Added an answer on May 13, 2026 at 8:49 pm

    I’m looking at your answer, which you say works, and you just want to know how to do it in a “single LINQ query.” Keep in mind that these queries all have deferred execution, so the following two queries are functionally equivalent:

    var q =
        from d in dates
        select d.Field<DateTime>("date");
    return
        (from r in records
         where !q.Contains(r.Field<DateTime>("date"))
         select r).CopyToDataTable();
    

    And:

    return
        (from r in records
         where !dates
             .Select(d => d.Field<DateTime>("date"))
             .Contains(r.Field<DateTime>("date"))
         select r).CopyToDataTable();
    

    The second version is a lot harder to read, but nevertheless, it is “one query.”


    Having said this, none of these examples really seem to match your question title, which suggests that you are trying to remove duplicate rows. If that is indeed what you are trying to do, here is a method that will do that:

    static DataTable RemoveDuplicates(DataTable dt)
    {
        return
            (from row in dt.Rows.OfType<DataRow>()
             group row by row.Field<string>("date") into g
             select g
                .OrderBy(r => r.Field<int>("ID"))
                .First()).CopyToDataTable();
    }
    

    If you don’t care about which duplicates removed then you can just remove the OrderBy line. You can test this as follows:

    static void Main(string[] args)
    {
        using (DataTable original = CreateSampleTable())
        using (DataTable filtered = RemoveDuplicates(original))
        {
            DumpTable(filtered);
        }
        Console.ReadKey();
    }
    
    static DataTable CreateSampleTable()
    {
        DataTable dt = new DataTable();
        dt.Columns.Add("ID", typeof(int));
        dt.Columns.Add("Code", typeof(string));
        dt.Columns.Add("Name", typeof(string));
        dt.Rows.Add(1, "123", "Alice");
        dt.Rows.Add(2, "456", "Bob");
        dt.Rows.Add(3, "456", "Chris");
        dt.Rows.Add(4, "789", "Dave");
        dt.Rows.Add(5, "123", "Elen");
        dt.Rows.Add(6, "123", "Frank");
        return dt;
    }
    
    static void DumpTable(DataTable dt)
    {
        foreach (DataRow row in dt.Rows)
        {
            Console.WriteLine("{0},{1},{2}",
                row.Field<int>("ID"),
                row.Field<string>("Code"),
                row.Field<string>("Name"));
        }
    }
    

    (just replace “date” with “Code” in the RemoveDuplicates method for this example)

    Hopefully one of these answers your question. Otherwise I think you’re going to have to be more clear with your requirements.

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

Sidebar

Related Questions

I have an issue that when I leave the android device idle for a
I have users who write articles and when they leave there computer for a
I have simple php validation form that is halfway working. If you leave the
I have created a Google Search function, however I would like to leave the
I have a asp.net/c# web app. When do user leave a certain page, I
I have a dictionary like this: /// <summary> /// Gets the leave entitlement details.
Sorry ,my English is poor, I have never speak English after I leave the
I'm trying to remove all of the leaves. I know that leaves have no
I have a dataTable that uses pagination. Now when my page loads then my
I have a DataGridView that is bound to a DataTable, it has a column

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.