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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:40:56+00:00 2026-05-16T08:40:56+00:00

Object is simple, it’s a rate of pay: public class RateOfPay { public decimal

  • 0

Object is simple, it’s a rate of pay:

public class RateOfPay
{
    public decimal Rate { get; set; }
    public DateTime Start { get; set; }
    public DateTime? End { get; set; }
}

and I’m trying to get it like this:

IEnumerable<T> rates = GetRates(); 
/*  
    actual collection is DevExpress XPCollection<RateOfPay> 
    which implements IEnumerable<T>
*/

var rate = from r in rates where r.End == null select r; // err here

It’s odd because the intellisense works fine on r, but it’s saying that r is an IEnumerable collection?

What am I missing?

  • 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-16T08:40:57+00:00Added an answer on May 16, 2026 at 8:40 am

    It is a collection, it’s an IEnumerable().Where(rate => rate.End == null) which is all rates that match that criteria.

    You’re missing the .FirstOrDefault() on your IEnumerable, can’t tell you the statement query syntax though..

    Should look like

    var rate = rates.FirstOrDefault(r => r.End == null);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple object public class SomeObject { public Int32 id { get;
If I have a simple object: class MyObject { public string MyValueProperty { get;
Say I have a simple object such as class Something { public int SomeInt
I have a simple object: @RooJavaBean @RooToString @RooJpaActiveRecord @RooJson public class HJAddress { private
I have a simple object in the format of class MyObject { public string
I have a simple object as such: public class Info { public string Name
I have a very simple object called CellData. Is defined as: public sealed class
I have an object with a simple property: public class obj { /* ...
I'm trying to get a simple object to JSON format from my Jetty server
I have a simple object: [DataContract] public class MyClass { [DataMember(Name = MyClassNo)] public

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.