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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:16:50+00:00 2026-06-06T12:16:50+00:00

I am using C#, Linq to Entities and .Net 4 I am using the

  • 0

I am using C#, Linq to Entities and .Net 4

I am using the following code to extract a list of data. The data may be a number but for some records it may be null or some other form of data. Is it possible with Linq to extract just the numbers in this filed or do I need to use additional steps?

var s = (from t in context.Cards where t.CardData != null select t.CardData).ToList();

The above will return a list of strings but I’d like a list of int. The CardData field may be null, a number or some text. In the DB it is a nullable nvarchar field.

  • 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-06T12:16:53+00:00Added an answer on June 6, 2026 at 12:16 pm

    The simplest way to do this will be to use TryParse on each element of your returned list. You’ve already eliminated the null elements so you know you have something:

    var numberList = new List<int>();
    foreach (var item in s)
    {
        int result = 0;
        if (Int32.TryParse(item, result))
        {
            numberList.Add(result);
        }
    }
    

    This has the added benefit that you’ll understand what it does 18 months from now.

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

Sidebar

Related Questions

I am using LINQ to Entities in an ASP.NET C# app. The below code
Using LINQ to Entities, how can I determine if any item from a List
I'm using LINQ to Entities to display paged results. But I'm having issues with
I'm working on the following LINQ query: public void GetAuditRuleAgencyRecords(IEnumerable<Entities.AuditRule> rules) { using (LinqModelDataContext
Using LINQ on collections, what is the difference between the following lines of code?
using Linq-to-SQL I'd like to prefetch some data. 1) the common solution is to
I've started using Linq-to-entities with .NET 3.5, and I've come across a scenario that
I am using the Entity Framework, ASP.NET and C#3.5 I borrowed the following code
How do data frameworks such as Linq 2 SQL, ADO.Net Data Entities and DataSets
I am writing an app using .NET, C#, LINQ to entities and SQL Server

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.