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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T16:16:52+00:00 2026-06-04T16:16:52+00:00

I have no idea what this exception is. Just when I thought I was

  • 0

I have no idea what this exception is. Just when I thought I was getting the hang of linq something like this happens. I am getting this exception:

Unable to cast object of type 'WhereSelectEnumerableIterator`2[System.Xml.Linq.XElement,TestImplementationIdeas.PatientClass]' to type 'TestImplementationIdeas.PatientClass'.

Now, I have know idea why this exception is being throw.

PatientClass template = (PatientClass)(from templates in xDocument.Descendants("template").Where
                                                       (templates => ((templates.Descendants("element").Attributes("name").ToString() == "EncounterId") && templates.Descendants("element").Attributes("value").ToString() == Enc.ToString())) //elem.XPathSelectElements(string.Format("//templates/template[./elements/element[@name=\"PopulationPatientID\"and @value='{0}' and @enc='{1}']]",PopulationPatID, Enc))
                                                       select new PatientClass
                                                       {
                                                           PatientId = Convert.ToInt32("0" + templates.XPathSelectElement("elements/element[@name='PatientId']").Attribute("value").Value),
                                                           EMPIID = Convert.ToInt32("0" + templates.XPathSelectElement("elements/element[@name='EMPIID']").Attribute("value").Value),
                                                           //public int PopulationPatientID { get; set; }
                                                           FirstName = templates.XPathSelectElement("elements/element[@name='FirstName']").Attribute("value").Value,
                                                           LastName = templates.XPathSelectElement("elements/element[@name='LastName']").Attribute("value").Value,

                                                       });
            return template != null ? template : null;
  • 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-04T16:16:53+00:00Added an answer on June 4, 2026 at 4:16 pm

    In general, LINQ queries always return an IEnumerable<> object, in your case, IEnumerable<PatientClass>. You need to perform additional opertions to filter a collection to a single object.

    //  will return the first `PatientClass` in the collection.  
    //   And will throw an exception if the collection is empty.
    return template.First(); 
    
    //  will return the first `PatientClass` in the collection or return the default value       
    //   (null in this case) if the collection is empty.
    return template.FirstOrDefault(); 
    
    // will return the only `PatientClass` in the collection if the collection only has 
    //  one object and will throw an exception if it is empty or has more than 1 object.
    return template.Single(); 
    
    // will return the only `PatientClass` in the collection if the collection only has 
    //  one object, the default value (null in this case) if it is empty and will throw an    
    //  exception if it has more than 1 object.
    return template.SingleOrDefault(); 
    

    And instead of the OrDefault() methods, if you want to control what value is returned when it is empty, there is a DefaultIfEmpty<>() extension method that you can specify a value if the collection is empty.

    // will return the first element in the collection, but if it is empty, 
    //  it will return a new Patient class object created with the default constructor instead of a null
    return template.DefaultIfEmpty(new PatientClass()).First();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone have any idea what this jQuery selector will do? object.find('td:eq(1) div div');
I have no idea if this is possible, but if it is, what would
I have no idea why this doesn't work, but doing some validation functions and
I have no idea if this is possible ... but it would be cool.
I have no idea what this means. But here is the code that it
I have no idea how this works or if it is even possible but
I have no idea why this wont work but I have tried the following:
Does any one have any idea why this would be happening? This is some
I have absolutely no idea why this is happening but the following code seems
I have this grand idea to basically employ some brute force attack to test/verify

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.