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

  • Home
  • SEARCH
  • 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 7193449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T20:10:21+00:00 2026-05-28T20:10:21+00:00

Due to some reason I cannot change the query so I have to do

  • 0

Due to some reason I cannot change the query so I have to do this in C#.

I have a class:

public class myClass
{
    int id { get; set; }
    string name { get; set; }
    DateTime sDate { get; set; }
    bool status { get; set; } 
}

The data I am getting is fetched in this list. Now what I want is to remove those properties from a list that has null values. I may sound insane but you read it right. I thought of creating another list with only the selected properties, but any of the above properties can be null. So I have to devise a mechanism to filter my list based on this.

For more clarity consider the following example.

List<myClass> lstClass = some data source.

After getting the data the generic list(lstClass) looks like this.Consider the result set in a table:

Id Name Sdate status
1  a    null  null
2  b    null  null
3  c    null  false

Can i some how make my list look like this after removing the property sdate.
So the new list that I want to create should have only three properties.

Id Name status
1  a    null
2  b    null
3  c    false

Any ideas? Can I do this using Linq?

PS: This has nothing to do with presentation. I don’t have a grid where I am not able to hide columns that Is not what I am looking for.

  • 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-28T20:10:21+00:00Added an answer on May 28, 2026 at 8:10 pm

    Assuming you have a generic list of myClass instances, you can create an anonymous type with only the needed properties:

    List<myClass> list = ...;
    var reducedList = list.Select(e => new {e.id, e.name, e.status}).ToList();
    // note: call to ToList() is optional
    
    foreach (var item in reducedList)
    {
        Console.WriteLine(item.id + " " + item.name + " " + item.status);
        //note: item does not have a property "sDate"
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Due to network or some other reasons, some sites do not have their css
Due to some rather bizarre architectural considerations I've had to set up something that
I have some idea that it is due to some complex calculation, but i
I'm having some issues with my code. This is probably due to some design
Due to a prinitng error in some promotional material I have a site that
I want to set the MaxReceivedMessageSize property to some higher limit (Due to (400)
For historical reasons, I have some WSE 3.0 web services that I cannot upgrade
I have a coreData datamodel file which was running perfectly. Due to some special
I have a working copy that I cannot check in due to a conflict.
i'm getting an error 'Object expected' for some odd reason due to jquery, and

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.